···27{
28}
2930-int rtc_read_datetime(unsigned char* buf)
31{
32-033}
3435-int rtc_write_datetime(unsigned char* buf)
36{
037 return 1;
38}
39040/**
41 * Checks to see if an alarm interrupt has triggered since last we checked.
42 */
43bool rtc_check_alarm_flag(void)
44{
45-46}
4748/**
···74// *m = ((buf[0] >> 4) & 0x7)*10 + (buf[0] & 0x0f);
75// *h = ((buf[1] >> 4) & 0x3)*10 + (buf[1] & 0x0f);
76}
0077
···27{
28}
2930+int rtc_read_datetime(struct tm *tm)
31{
32+ (void)tm;
33+ return 0;
34}
3536+int rtc_write_datetime(const struct tm *tm)
37{
38+ (void)tm;
39 return 1;
40}
4142+#ifdef HAVE_RTC_ALARM
43/**
44 * Checks to see if an alarm interrupt has triggered since last we checked.
45 */
46bool rtc_check_alarm_flag(void)
47{
048}
4950/**
···76// *m = ((buf[0] >> 4) & 0x7)*10 + (buf[0] & 0x0f);
77// *h = ((buf[1] >> 4) & 0x3)*10 + (buf[1] & 0x0f);
78}
79+#endif /* HAVE_RTC_ALARM */
80+81
+2
firmware/export/config/logikdax.h
···88#define HAVE_WM8731
89/* Codec is slave on serial bus */
90#define CODEC_SLAVE
009192/* Define this for LCD backlight available */
93#define HAVE_BACKLIGHT
···88#define HAVE_WM8731
89/* Codec is slave on serial bus */
90#define CODEC_SLAVE
91+/* WM8731 has no tone controls, so we use the software ones */
92+#define HAVE_SW_TONE_CONTROLS
9394/* Define this for LCD backlight available */
95#define HAVE_BACKLIGHT