説明なし

rtc.h 241B

123456789101112131415161718
  1. #ifndef RTC_H_
  2. #define RTC_H_
  3. #include <pokeagb/pokeagb.h>
  4. struct RtcTimestamp {
  5. u8 year;
  6. u8 month;
  7. u8 day;
  8. u8 day_of_week;
  9. u8 hour;
  10. u8 minute;
  11. u8 second;
  12. };
  13. void rtc_get_time(struct RtcTimestamp* out);
  14. #endif