1 #ifndef BOARD_H
2 #define BOARD_H
3 
4 #if (CONFIG_A7_DSP_ENABLE == 1)
5 #define DEBUG_LASTWORD_RAM_ADDR 0x20166000
6 #else
7 #define DEBUG_LASTWORD_RAM_ADDR 0x201e6000
8 #endif
9 
10 typedef enum {
11     HAAS_EDU_K1 = 0,                     /**< Playback stream */
12     HAAS_EDU_K1C,                         /**< Capture stream */
13     HAAS_EDU_MAX
14 } haasedu_board_t;
15 
16 extern int haasedu_is_k1c();
17 void soc_systick_start(void);
18 void soc_systick_stop(void);
19 
20 #endif /* BOARD_H */
21