mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
16 lines
355 B
C
16 lines
355 B
C
|
#ifndef __CSI_CONFIG_H__
|
||
|
#define __CSI_CONFIG_H__
|
||
|
#define CONFIG_CHIP_SL04 1
|
||
|
//#define CONFIG_KERNEL_NONE 1
|
||
|
#define CONFIG_HAVE_VIC 1
|
||
|
#define CONFIG_SEPARATE_IRQ_SP 1
|
||
|
#define CONFIG_ARCH_INTERRUPTSTACK 4096
|
||
|
#define CONFIG_IRQ_VECTOR_SIZE 256
|
||
|
#define USE_UART0_PRINT 1
|
||
|
|
||
|
#ifdef CONFIG_KERNEL_NONE
|
||
|
#define CONFIG_SYSTEM_SECURE 1
|
||
|
#endif
|
||
|
|
||
|
#endif
|