forked from apache/nuttx
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefconfig
1729 lines (1600 loc) · 42.1 KB
/
defconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# Automatically generated file; DO NOT EDIT.
# NuttX/x86_64 Configuration
#
#
# License Setup
#
# CONFIG_ALLOW_BSD_COMPONENTS is not set
# CONFIG_ALLOW_GPL_COMPONENTS is not set
#
# Build Setup
#
# CONFIG_EXPERIMENTAL is not set
CONFIG_DEFAULT_SMALL=y
CONFIG_HOST_LINUX=y
# CONFIG_HOST_MACOS is not set
# CONFIG_HOST_WINDOWS is not set
# CONFIG_HOST_OTHER is not set
#
# Build Configuration
#
CONFIG_APPS_DIR="../apps"
CONFIG_BUILD_FLAT=y
# CONFIG_BUILD_2PASS is not set
#
# Binary Output Formats
#
CONFIG_INTELHEX_BINARY=y
# CONFIG_MOTOROLA_SREC is not set
CONFIG_RAW_BINARY=y
# CONFIG_UBOOT_UIMAGE is not set
# CONFIG_DFU_BINARY is not set
#
# Customize Header Files
#
# CONFIG_ARCH_HAVE_STDINT_H is not set
# CONFIG_ARCH_HAVE_STDBOOL_H is not set
# CONFIG_ARCH_HAVE_MATH_H is not set
# CONFIG_ARCH_FLOAT_H is not set
CONFIG_ARCH_HAVE_STDARG_H=y
# CONFIG_ARCH_STDARG_H is not set
CONFIG_ARCH_HAVE_SETJMP=y
# CONFIG_ARCH_SETJMP_H is not set
CONFIG_ARCH_NONE_DEBUG_H=y
# CONFIG_ARCH_DEBUG_H is not set
# CONFIG_ARCH_CHIP_DEBUG_H is not set
#
# Debug Options
#
CONFIG_NDEBUG=y
CONFIG_DEBUG_ALERT=y
CONFIG_DEBUG_FEATURES=y
#
# Debug SYSLOG Output Controls
#
CONFIG_DEBUG_ERROR=y
CONFIG_DEBUG_WARN=y
CONFIG_DEBUG_INFO=y
CONFIG_DEBUG_ASSERTIONS=y
#
# Subsystem Debug Options
#
# CONFIG_DEBUG_CRYPTO is not set
# CONFIG_DEBUG_FS is not set
CONFIG_DEBUG_GRAPHICS=y
CONFIG_DEBUG_GRAPHICS_ERROR=y
CONFIG_DEBUG_GRAPHICS_WARN=y
# CONFIG_DEBUG_GRAPHICS_INFO is not set
# CONFIG_DEBUG_LIB is not set
# CONFIG_DEBUG_MM is not set
# CONFIG_DEBUG_POWER is not set
# CONFIG_DEBUG_BATTERY is not set
# CONFIG_DEBUG_SCHED is not set
#
# OS Function Debug Options
#
# CONFIG_DEBUG_IRQ is not set
#
# Driver Debug Options
#
CONFIG_DEBUG_LCD=y
CONFIG_DEBUG_LCD_ERROR=y
CONFIG_DEBUG_LCD_WARN=y
# CONFIG_DEBUG_LCD_INFO is not set
CONFIG_DEBUG_INPUT=y
CONFIG_DEBUG_INPUT_ERROR=y
CONFIG_DEBUG_INPUT_WARN=y
CONFIG_DEBUG_INPUT_INFO=y
CONFIG_DEBUG_GPIO=y
CONFIG_DEBUG_GPIO_ERROR=y
CONFIG_DEBUG_GPIO_WARN=y
# CONFIG_DEBUG_GPIO_INFO is not set
CONFIG_DEBUG_I2C=y
CONFIG_DEBUG_I2C_ERROR=y
CONFIG_DEBUG_I2C_WARN=y
# CONFIG_DEBUG_I2C_INFO is not set
CONFIG_DEBUG_SENSORS=y
CONFIG_DEBUG_SENSORS_ERROR=y
CONFIG_DEBUG_SENSORS_WARN=y
# CONFIG_DEBUG_SENSORS_INFO is not set
CONFIG_DEBUG_SPI=y
CONFIG_DEBUG_SPI_ERROR=y
CONFIG_DEBUG_SPI_WARN=y
# CONFIG_DEBUG_SPI_INFO is not set
# CONFIG_DEBUG_TIMER is not set
# CONFIG_DEBUG_TCBINFO is not set
CONFIG_ARCH_HAVE_STACKCHECK=y
CONFIG_STACK_COLORATION=y
CONFIG_STACK_CANARIES=y
# CONFIG_ARCH_HAVE_HEAPCHECK is not set
CONFIG_DEBUG_SYMBOLS=y
# CONFIG_FRAME_POINTER is not set
CONFIG_ARCH_HAVE_CUSTOMOPT=y
# CONFIG_DEBUG_NOOPT is not set
# CONFIG_DEBUG_CUSTOMOPT is not set
CONFIG_DEBUG_FULLOPT=y
#
# System Type
#
# CONFIG_ARCH_ARM is not set
# CONFIG_ARCH_AVR is not set
# CONFIG_ARCH_HC is not set
# CONFIG_ARCH_MIPS is not set
# CONFIG_ARCH_MISOC is not set
# CONFIG_ARCH_RENESAS is not set
CONFIG_ARCH_RISCV=y
# CONFIG_ARCH_SIM is not set
# CONFIG_ARCH_X86 is not set
# CONFIG_ARCH_X86_64 is not set
# CONFIG_ARCH_XTENSA is not set
# CONFIG_ARCH_Z16 is not set
# CONFIG_ARCH_Z80 is not set
# CONFIG_ARCH_OR1K is not set
# CONFIG_ARCH_SPARC is not set
CONFIG_ARCH="risc-v"
CONFIG_ARCH_FAMILY="rv32"
CONFIG_ARCH_CHIP="bl602"
#
# RISC-V Options
#
# CONFIG_ARCH_CHIP_FE310 is not set
# CONFIG_ARCH_CHIP_K210 is not set
# CONFIG_ARCH_CHIP_LITEX is not set
CONFIG_ARCH_CHIP_BL602=y
# CONFIG_ARCH_CHIP_ESP32C3 is not set
# CONFIG_ARCH_CHIP_C906 is not set
# CONFIG_ARCH_CHIP_MPFS is not set
# CONFIG_ARCH_CHIP_RV32M1 is not set
# CONFIG_ARCH_CHIP_QEMU_RV is not set
# CONFIG_ARCH_CHIP_RISCV_CUSTOM is not set
CONFIG_ARCH_RV32=y
# CONFIG_ARCH_RV64 is not set
CONFIG_ARCH_RV_ISA_M=y
CONFIG_ARCH_RV_ISA_A=y
CONFIG_ARCH_RV_ISA_C=y
# CONFIG_ARCH_MMU_TYPE_SV39 is not set
# CONFIG_ARCH_HAVE_S_MODE is not set
CONFIG_ARCH_HAVE_MISALIGN_EXCEPTION=y
CONFIG_RISCV_MISALIGNED_HANDLER=y
# CONFIG_PMP_HAS_LIMITED_FEATURES is not set
CONFIG_ARCH_MPU_MIN_BLOCK_SIZE=4
CONFIG_ARCH_MPU_HAS_TOR=y
CONFIG_ARCH_MPU_HAS_NO4=y
CONFIG_ARCH_MPU_HAS_NAPOT=y
CONFIG_RISCV_TOOLCHAIN_GNU_RVG=y
# CONFIG_OPENSBI is not set
#
# BL602 Configuration Options
#
#
# BL602 Peripheral Support
#
CONFIG_BL602_HAVE_UART0=y
CONFIG_BL602_UART0=y
# CONFIG_BL602_HAVE_UART1 is not set
# CONFIG_BL602_UART1 is not set
CONFIG_BL602_TIMER0=y
# CONFIG_BL602_TIMER1 is not set
# CONFIG_BL602_PWM0 is not set
CONFIG_BL602_I2C0=y
CONFIG_BL602_SPI0=y
# CONFIG_BL602_RTC is not set
# CONFIG_BL602_SPIFLASH is not set
CONFIG_ARCH_BOARD="bl602evb"
# CONFIG_ARCH_CHIP_CUSTOM is not set
# CONFIG_ARCH_TOOLCHAIN_IAR is not set
CONFIG_ARCH_TOOLCHAIN_GNU=y
# CONFIG_ARCH_GNU_NO_WEAKFUNCTIONS is not set
# CONFIG_ARCH_SIZET_LONG is not set
# CONFIG_ARCH_COVERAGE is not set
#
# Architecture Options
#
# CONFIG_ARCH_NOINTC is not set
# CONFIG_ARCH_VECNOTIRQ is not set
# CONFIG_ARCH_HAVE_IRQTRIGGER is not set
# CONFIG_ARCH_DMA is not set
# CONFIG_ARCH_HAVE_IRQPRIO is not set
# CONFIG_ARCH_ICACHE is not set
# CONFIG_ARCH_DCACHE is not set
# CONFIG_ARCH_L2CACHE is not set
# CONFIG_ARCH_HAVE_ADDRENV is not set
# CONFIG_ARCH_NEED_ADDRENV_MAPPING is not set
# CONFIG_ARCH_HAVE_EXTRA_HEAPS is not set
# CONFIG_ARCH_HAVE_TEXT_HEAP is not set
# CONFIG_ARCH_HAVE_MULTICPU is not set
# CONFIG_ARCH_HAVE_VFORK is not set
CONFIG_ARCH_HAVE_FPU=y
# CONFIG_ARCH_HAVE_DPFPU is not set
# CONFIG_ARCH_HAVE_MMU is not set
# CONFIG_ARCH_HAVE_MPU is not set
# CONFIG_ARCH_NAND_HWECC is not set
# CONFIG_ARCH_HAVE_EXTCLK is not set
# CONFIG_ARCH_HAVE_POWEROFF is not set
# CONFIG_ARCH_HAVE_PROGMEM is not set
CONFIG_ARCH_HAVE_RESET=y
CONFIG_ARCH_HAVE_TESTSET=y
CONFIG_ARCH_HAVE_THREAD_LOCAL=y
# CONFIG_ARCH_HAVE_FETCHADD is not set
# CONFIG_ARCH_HAVE_RTC_SUBSECONDS is not set
CONFIG_ARCH_HAVE_SYSCALL_HOOKS=y
CONFIG_ARCH_HAVE_BACKTRACE=y
# CONFIG_ARCH_HAVE_BOOTLOADER is not set
CONFIG_ARCH_FPU=y
CONFIG_ARCH_STACKDUMP=y
# CONFIG_ARCH_IDLE_CUSTOM is not set
# CONFIG_ARCH_HAVE_RAMFUNCS is not set
# CONFIG_ARCH_HAVE_RAMVECTORS is not set
# CONFIG_ARCH_MINIMAL_VECTORTABLE is not set
#
# Board Settings
#
CONFIG_BOARD_LOOPSPERMSEC=10000
#
# Interrupt options
#
CONFIG_ARCH_HAVE_INTERRUPTSTACK=y
CONFIG_ARCH_INTERRUPTSTACK=8192
# CONFIG_ARCH_HAVE_HIPRI_INTERRUPT is not set
#
# Boot options
#
# CONFIG_BOOT_RUNFROMEXTSRAM is not set
CONFIG_BOOT_RUNFROMFLASH=y
# CONFIG_BOOT_RUNFROMISRAM is not set
# CONFIG_BOOT_RUNFROMSDRAM is not set
# CONFIG_BOOT_COPYTORAM is not set
#
# Boot Memory Configuration
#
CONFIG_RAM_START=0xc0800000
CONFIG_RAM_SIZE=134217728
# CONFIG_ARCH_HAVE_SDRAM is not set
#
# Board Selection
#
CONFIG_ARCH_BOARD_BL602EVB=y
# CONFIG_ARCH_BOARD_CUSTOM is not set
#
# Common Board Options
#
#
# Board-Specific Options
#
#
# Board-Common Options
#
# CONFIG_ARCH_BOARD_COMMON is not set
# CONFIG_BOARD_CRASHDUMP is not set
# CONFIG_BOARD_ENTROPY_POOL is not set
# CONFIG_BOARD_INITRNGSEED is not set
CONFIG_BOARDCTL=y
# CONFIG_BOARDCTL_FINALINIT is not set
# CONFIG_BOARDCTL_RESET is not set
# CONFIG_BOARDCTL_RESET_CAUSE is not set
# CONFIG_BOARDCTL_UNIQUEID is not set
# CONFIG_BOARDCTL_UNIQUEKEY is not set
# CONFIG_BOARDCTL_SWITCH_BOOT is not set
# CONFIG_BOARDCTL_BOOT_IMAGE is not set
# CONFIG_BOARDCTL_MKRD is not set
# CONFIG_BOARDCTL_ROMDISK is not set
# CONFIG_BOARDCTL_APP_SYMTAB is not set
# CONFIG_BOARDCTL_TESTSET is not set
# CONFIG_BOARDCTL_IOCTL is not set
# CONFIG_BOARD_USBDEV_SERIALSTR is not set
#
# RTOS Features
#
CONFIG_DISABLE_OS_API=y
# CONFIG_DISABLE_POSIX_TIMERS is not set
# CONFIG_DISABLE_PTHREAD is not set
# CONFIG_DISABLE_MQUEUE is not set
CONFIG_DISABLE_ENVIRON=y
#
# Clocks and Timers
#
CONFIG_ARCH_HAVE_TICKLESS=y
# CONFIG_SCHED_TICKLESS is not set
CONFIG_USEC_PER_TICK=10000
# CONFIG_SYSTEMTICK_HOOK is not set
# CONFIG_SYSTEM_TIME64 is not set
CONFIG_ARCH_HAVE_TIMEKEEPING=y
# CONFIG_JULIAN_TIME is not set
CONFIG_START_YEAR=2020
CONFIG_START_MONTH=3
CONFIG_START_DAY=20
CONFIG_PREALLOC_TIMERS=0
#
# Tasks and Scheduling
#
# CONFIG_SPINLOCK is not set
# CONFIG_IRQCHAIN is not set
# CONFIG_IRQCOUNT is not set
# CONFIG_INIT_NONE is not set
CONFIG_INIT_ENTRY=y
CONFIG_INIT_ARGS=""
CONFIG_INIT_STACKSIZE=8192
CONFIG_INIT_PRIORITY=100
CONFIG_INIT_ENTRYPOINT="nsh_main"
CONFIG_INIT_ENTRYNAME="nsh_main"
CONFIG_RR_INTERVAL=200
# CONFIG_SCHED_SPORADIC is not set
CONFIG_TASK_NAME_SIZE=12
# CONFIG_SCHED_HAVE_PARENT is not set
CONFIG_SCHED_WAITPID=y
# CONFIG_SCHED_USER_IDENTITY is not set
# CONFIG_SCHED_THREAD_LOCAL is not set
#
# Pthread Options
#
# CONFIG_PTHREAD_MUTEX_TYPES is not set
# CONFIG_PTHREAD_MUTEX_ROBUST is not set
CONFIG_PTHREAD_MUTEX_UNSAFE=y
# CONFIG_PTHREAD_MUTEX_BOTH is not set
CONFIG_PTHREAD_MUTEX_DEFAULT_PRIO_NONE=y
# CONFIG_PTHREAD_CLEANUP is not set
# CONFIG_CANCELLATION_POINTS is not set
#
# Performance Monitoring
#
# CONFIG_SCHED_SUSPENDSCHEDULER is not set
# CONFIG_SCHED_RESUMESCHEDULER is not set
# CONFIG_SCHED_IRQMONITOR is not set
# CONFIG_SCHED_CRITMONITOR is not set
# CONFIG_SCHED_CPULOAD is not set
# CONFIG_SCHED_INSTRUMENTATION is not set
#
# Files and I/O
#
CONFIG_DEV_CONSOLE=y
# CONFIG_FDCLONE_DISABLE is not set
# CONFIG_FDCLONE_STDIO is not set
CONFIG_NFILE_DESCRIPTORS_PER_BLOCK=6
CONFIG_FILE_STREAM=y
CONFIG_NAME_MAX=32
CONFIG_PATH_MAX=256
# CONFIG_PRIORITY_INHERITANCE is not set
#
# RTOS hooks
#
# CONFIG_BOARD_EARLY_INITIALIZE is not set
# CONFIG_BOARD_LATE_INITIALIZE is not set
# CONFIG_SCHED_STARTHOOK is not set
# CONFIG_SCHED_ATEXIT is not set
# CONFIG_SCHED_ONEXIT is not set
#
# Signal Configuration
#
CONFIG_SIG_PREALLOC_IRQ_ACTIONS=4
CONFIG_SIG_EVTHREAD=y
# CONFIG_SIG_EVTHREAD_HPWORK is not set
# CONFIG_SIG_DEFAULT is not set
#
# Signal Numbers
#
#
# Standard Signal Numbers
#
CONFIG_SIG_SIGUSR1=1
CONFIG_SIG_SIGUSR2=2
CONFIG_SIG_SIGALRM=3
CONFIG_SIG_PIPE=13
#
# Non-standard Signal Numbers
#
CONFIG_SIG_SIGCONDTIMEDOUT=16
CONFIG_SIG_SIGWORK=17
#
# POSIX Message Queue Options
#
CONFIG_PREALLOC_MQ_MSGS=4
CONFIG_PREALLOC_MQ_IRQ_MSGS=4
CONFIG_MQ_MAXMSGSIZE=32
# CONFIG_MODULE is not set
#
# Work queue support
#
CONFIG_SCHED_WORKQUEUE=y
# CONFIG_WQUEUE_NOTIFIER is not set
CONFIG_SCHED_HPWORK=y
CONFIG_SCHED_HPNTHREADS=1
CONFIG_SCHED_HPWORKPRIORITY=224
CONFIG_SCHED_HPWORKSTACKSIZE=2048
# CONFIG_SCHED_LPWORK is not set
#
# Stack and heap information
#
CONFIG_DEFAULT_TASK_STACKSIZE=2048
CONFIG_IDLETHREAD_STACKSIZE=8192
CONFIG_PTHREAD_STACK_MIN=256
CONFIG_PTHREAD_STACK_DEFAULT=8192
CONFIG_SCHED_BACKTRACE=y
# CONFIG_LIB_SYSCALL is not set
#
# Device Drivers
#
# CONFIG_SPECIFIC_DRIVERS is not set
CONFIG_DEV_URANDOM=y
# CONFIG_DEV_URANDOM_XORSHIFT128 is not set
# CONFIG_DEV_URANDOM_CONGRUENTIAL is not set
CONFIG_DEV_URANDOM_RANDOM_POOL=y
# CONFIG_DEV_LOOP is not set
# CONFIG_ARCH_HAVE_CAN_ERRORS is not set
# CONFIG_CAN is not set
# CONFIG_CLK is not set
# CONFIG_ARCH_HAVE_I2CRESET is not set
# CONFIG_BOARD_HAVE_I2CMUX is not set
CONFIG_I2C=y
# CONFIG_I2C_SLAVE is not set
# CONFIG_I2C_POLLED is not set
# CONFIG_I2C_TRACE is not set
# CONFIG_I2C_BITBANG is not set
CONFIG_I2C_DRIVER=y
#
# I2C Multiplexer Support
#
# CONFIG_I2CMULTIPLEXER_PCA9540BDP is not set
# CONFIG_I2CMULTIPLEXER_TCA9548A is not set
# CONFIG_ARCH_HAVE_SPI_CRCGENERATION is not set
# CONFIG_ARCH_HAVE_SPI_CS_CONTROL is not set
# CONFIG_ARCH_HAVE_SPI_BITORDER is not set
CONFIG_SPI=y
# CONFIG_SPI_SLAVE is not set
CONFIG_SPI_EXCHANGE=y
CONFIG_SPI_CMDDATA=y
# CONFIG_SPI_CALLBACK is not set
# CONFIG_SPI_HWFEATURES is not set
# CONFIG_SPI_DELAY_CONTROL is not set
# CONFIG_SPI_TRIGGER is not set
CONFIG_SPI_DRIVER=y
# CONFIG_SPI_BITBANG is not set
# CONFIG_SPI_FLASH is not set
# CONFIG_QSPI_FLASH is not set
# CONFIG_I2S is not set
#
# Timer Driver Support
#
# CONFIG_ARCH_HAVE_PWM_PULSECOUNT is not set
CONFIG_ARCH_HAVE_PWM_MULTICHAN=y
# CONFIG_PWM is not set
CONFIG_TIMER=y
CONFIG_TIMER_ARCH=y
CONFIG_ONESHOT=y
CONFIG_ALARM_ARCH=y
# CONFIG_RTC is not set
# CONFIG_WATCHDOG is not set
# CONFIG_TIMERS_CS2100CP is not set
# CONFIG_ANALOG is not set
# CONFIG_DRIVERS_AUDIO is not set
# CONFIG_FB_CMAP is not set
# CONFIG_FB_TRANSPARENCY is not set
# CONFIG_FB_UPDATE is not set
# CONFIG_FB_SYNC is not set
# CONFIG_FB_OVERLAY is not set
# CONFIG_FB_MODULEINFO is not set
# CONFIG_DRIVERS_VIDEO is not set
# CONFIG_BCH is not set
CONFIG_INPUT=y
# CONFIG_INPUT_MOUSE is not set
CONFIG_INPUT_TOUCHSCREEN=y
# CONFIG_INPUT_KEYBOARD is not set
# CONFIG_INPUT_UINPUT is not set
# CONFIG_UINPUT_TOUCH is not set
# CONFIG_UINPUT_BUTTONS is not set
# CONFIG_UINPUT_KEYBOARD is not set
# CONFIG_INPUT_MAX11802 is not set
# CONFIG_INPUT_TSC2007 is not set
# CONFIG_INPUT_FT5X06 is not set
# CONFIG_INPUT_ADS7843E is not set
# CONFIG_INPUT_MXT is not set
# CONFIG_INPUT_STMPE811 is not set
# CONFIG_INPUT_CYPRESS_MBR3108 is not set
CONFIG_INPUT_CST816S=y
# CONFIG_INPUT_BUTTONS is not set
# CONFIG_INPUT_DJOYSTICK is not set
# CONFIG_INPUT_AJOYSTICK is not set
# CONFIG_INPUT_NUNCHUCK is not set
# CONFIG_INPUT_SPQ10KBD is not set
#
# IO Expander/GPIO Support
#
CONFIG_IOEXPANDER=y
# CONFIG_IOEXPANDER_DUMMY is not set
# CONFIG_IOEXPANDER_MCP23X17 is not set
# CONFIG_IOEXPANDER_PCA9555 is not set
# CONFIG_IOEXPANDER_PCA9538 is not set
CONFIG_IOEXPANDER_BL602_EXPANDER=y
CONFIG_IOEXPANDER_INT_ENABLE=y
CONFIG_IOEXPANDER_NPINS=23
# CONFIG_IOEXPANDER_MULTIPIN is not set
CONFIG_DEV_GPIO=y
CONFIG_DEV_GPIO_NSIGNALS=1
CONFIG_GPIO_LOWER_HALF=y
CONFIG_GPIO_LOWER_HALF_INTTYPE=14
#
# LCD Driver Support
#
CONFIG_LCD=y
CONFIG_LCD_PACKEDMSFIRST=y
#
# Common Graphic LCD Settings
#
CONFIG_LCD_DEV=y
# CONFIG_LCD_FRAMEBUFFER is not set
#
# LCD driver selection
#
# CONFIG_LCD_NOGETRUN is not set
CONFIG_LCD_MAXCONTRAST=63
CONFIG_LCD_MAXPOWER=1
#
# Graphic LCD Devices
#
# CONFIG_LCD_P14201 is not set
# CONFIG_LCD_MAX7219 is not set
# CONFIG_LCD_MIO283QT2 is not set
# CONFIG_LCD_MIO283QT9A is not set
# CONFIG_LCD_UG9664HSWAG01 is not set
# CONFIG_LCD_SH1106_OLED_132 is not set
# CONFIG_LCD_UG2864HSWEG01 is not set
# CONFIG_LCD_UG2832HSWEG04 is not set
# CONFIG_LCD_DD12864WO4A is not set
# CONFIG_LCD_HILETGO is not set
# CONFIG_LCD_SSD1351 is not set
# CONFIG_LCD_ST7735 is not set
CONFIG_LCD_ST7789=y
CONFIG_LCD_ST7789_XRES=240
CONFIG_LCD_ST7789_YRES=240
CONFIG_LCD_ST7789_XOFFSET=0
CONFIG_LCD_ST7789_YOFFSET=0
CONFIG_LCD_ST7789_BPP=16
CONFIG_LCD_ST7789_SPIMODE=0
CONFIG_LCD_ST7789_FREQUENCY=40000000
# CONFIG_LCD_GC9A01 is not set
# CONFIG_LCD_PCD8544 is not set
# CONFIG_LCD_ST7565 is not set
# CONFIG_LCD_ST7567 is not set
# CONFIG_LCD_UG2864AMBAG01 is not set
# CONFIG_LCD_SSD1289 is not set
# CONFIG_LCD_SHARP_MEMLCD is not set
CONFIG_LCD_LANDSCAPE=y
# CONFIG_LCD_PORTRAIT is not set
# CONFIG_LCD_RPORTRAIT is not set
# CONFIG_LCD_RLANDSCAPE is not set
# CONFIG_LCD_LPM013M091A is not set
# CONFIG_LCD_ILI9225 is not set
# CONFIG_LCD_ILI9340 is not set
# CONFIG_LCD_ILI9341 is not set
# CONFIG_LCD_FT80X is not set
#
# Character/Segment LCD Devices
#
# CONFIG_SLCD is not set
#
# Other LCD-related Devices
#
# CONFIG_LCD_OTHER is not set
#
# LED Support
#
# CONFIG_USERLED is not set
# CONFIG_LEDS_APA102 is not set
# CONFIG_LEDS_MAX7219 is not set
# CONFIG_RGBLED is not set
# CONFIG_PCA9635PW is not set
# CONFIG_NCP5623C is not set
# CONFIG_WS2812 is not set
# CONFIG_DEV_SIMPLE_ADDRENV is not set
CONFIG_DEV_NULL=y
CONFIG_DEV_ZERO=y
# CONFIG_DRVR_MKRD is not set
CONFIG_ARCH_HAVE_RDWR_MEM_CPU_RUN=y
# CONFIG_LWL_CONSOLE is not set
#
# Buffering
#
# CONFIG_DRVR_WRITEBUFFER is not set
# CONFIG_DRVR_READAHEAD is not set
# CONFIG_ARCH_HAVE_SDIO is not set
# CONFIG_ARCH_HAVE_SDIOWAIT_WRCOMPLETE is not set
# CONFIG_ARCH_HAVE_SDIO_PREFLIGHT is not set
# CONFIG_MMCSD is not set
# CONFIG_MODEM is not set
# CONFIG_MTD is not set
# CONFIG_EEPROM is not set
# CONFIG_EFUSE is not set
# CONFIG_PIPES is not set
# CONFIG_PM is not set
# CONFIG_DRIVERS_POWERLED is not set
# CONFIG_DRIVERS_SMPS is not set
# CONFIG_POWER is not set
CONFIG_SENSORS=y
CONFIG_SENSORS_NPOLLWAITERS=2
# CONFIG_SENSORS_WTGAHRS2 is not set
# CONFIG_SENSORS_FAKESENSOR is not set
# CONFIG_SENSORS_APDS9960 is not set
# CONFIG_SENSORS_AK09912 is not set
# CONFIG_SENSORS_AS5048B is not set
# CONFIG_SENSORS_BH1750FVI is not set
# CONFIG_SENSORS_BME280 is not set
# CONFIG_SENSORS_BMG160 is not set
# CONFIG_SENSORS_BMI160 is not set
# CONFIG_SENSORS_BMP180 is not set
# CONFIG_SENSORS_BMP280 is not set
# CONFIG_SENSORS_DHTXX is not set
# CONFIG_SENSORS_DS18B20 is not set
# CONFIG_SENSORS_FXOS8700CQ is not set
# CONFIG_SENSORS_HCSR04 is not set
# CONFIG_SENSORS_HYT271 is not set
# CONFIG_SENSORS_ISL29023 is not set
# CONFIG_SENSORS_HTS221 is not set
# CONFIG_SENSORS_L3GD20 is not set
# CONFIG_SENSOR_KXTJ9 is not set
# CONFIG_SENSORS_LIS2DH is not set
# CONFIG_LIS3DSH is not set
# CONFIG_LIS331DL is not set
# CONFIG_SENSORS_LSM330SPI is not set
# CONFIG_SENSORS_LSM9DS1 is not set
# CONFIG_SENSORS_MSA301 is not set
# CONFIG_SENSORS_LPS25H is not set
# CONFIG_SENSORS_LTC4151 is not set
# CONFIG_SENSORS_INA219 is not set
# CONFIG_SENSORS_INA226 is not set
# CONFIG_SENSORS_INA3221 is not set
# CONFIG_SENSORS_MB7040 is not set
# CONFIG_SENSORS_MLX90393 is not set
# CONFIG_SENSORS_MLX90614 is not set
# CONFIG_SENSORS_MCP9844 is not set
# CONFIG_SENSORS_MS5611 is not set
# CONFIG_SENSORS_MS58XX is not set
# CONFIG_SENSORS_MPL115A is not set
# CONFIG_SENSORS_ADXL345 is not set
# CONFIG_SENSORS_ADXL372 is not set
# CONFIG_SENSORS_MPU60X0 is not set
# CONFIG_SENSORS_MAX44009 is not set
# CONFIG_SENSORS_MAX31855 is not set
# CONFIG_SENSORS_MAX6675 is not set
# CONFIG_SENSORS_LIS3MDL is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_SCD30 is not set
# CONFIG_SENSORS_SCD41 is not set
# CONFIG_SENSORS_SGP30 is not set
# CONFIG_SENSORS_AHT10 is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SHT3X is not set
# CONFIG_SENSORS_SPS30 is not set
# CONFIG_SENSORS_T67XX is not set
# CONFIG_SENSORS_QENCODER is not set
# CONFIG_SENSORS_HALL3PHASE is not set
# CONFIG_SENSORS_VEML6070 is not set
# CONFIG_SENSORS_XEN1210 is not set
# CONFIG_SENSORS_ZEROCROSS is not set
# CONFIG_SENSORS_ADT7320 is not set
# CONFIG_SENSORS_HDC1008 is not set
CONFIG_ARCH_HAVE_SERIAL_TERMIOS=y
CONFIG_SERIAL=y
# CONFIG_SERIAL_REMOVABLE is not set
CONFIG_SERIAL_CONSOLE=y
# CONFIG_16550_UART is not set
# CONFIG_OTHER_UART_SERIALDRIVER is not set
CONFIG_MCU_SERIAL=y
CONFIG_STANDARD_SERIAL=y
CONFIG_SERIAL_NPOLLWAITERS=4
# CONFIG_SERIAL_IFLOWCONTROL is not set
# CONFIG_SERIAL_RS485CONTROL is not set
# CONFIG_SERIAL_OFLOWCONTROL is not set
# CONFIG_SERIAL_TXDMA is not set
# CONFIG_SERIAL_RXDMA is not set
# CONFIG_SERIAL_TIOCSERGSTRUCT is not set
# CONFIG_SERIAL_TERMIOS is not set
# CONFIG_TTY_LAUNCH is not set
# CONFIG_TTY_FORCE_PANIC is not set
# CONFIG_TTY_SIGINT is not set
# CONFIG_TTY_SIGTSTP is not set
CONFIG_UART0_SERIAL_CONSOLE=y
# CONFIG_OTHER_SERIAL_CONSOLE is not set
# CONFIG_NO_SERIAL_CONSOLE is not set
# CONFIG_UART_SERIALDRIVER is not set
CONFIG_UART0_SERIALDRIVER=y
# CONFIG_UART1_SERIALDRIVER is not set
# CONFIG_UART2_SERIALDRIVER is not set
# CONFIG_UART3_SERIALDRIVER is not set
# CONFIG_UART4_SERIALDRIVER is not set
# CONFIG_UART5_SERIALDRIVER is not set
# CONFIG_UART6_SERIALDRIVER is not set
# CONFIG_UART7_SERIALDRIVER is not set
# CONFIG_UART8_SERIALDRIVER is not set
#
# UART0 Configuration
#
CONFIG_UART0_RXBUFSIZE=128
CONFIG_UART0_TXBUFSIZE=128
CONFIG_UART0_BAUD=2000000
CONFIG_UART0_BITS=8
CONFIG_UART0_PARITY=0
CONFIG_UART0_2STOP=0
# CONFIG_UART0_IFLOWCONTROL is not set
# CONFIG_UART0_OFLOWCONTROL is not set
# CONFIG_UART0_RXDMA is not set
# CONFIG_UART0_TXDMA is not set
# CONFIG_LPUART_SERIALDRIVER is not set
# CONFIG_LPUART0_SERIALDRIVER is not set
# CONFIG_LPUART1_SERIALDRIVER is not set
# CONFIG_LPUART2_SERIALDRIVER is not set
# CONFIG_LPUART3_SERIALDRIVER is not set
# CONFIG_LPUART4_SERIALDRIVER is not set
# CONFIG_LPUART5_SERIALDRIVER is not set
# CONFIG_LPUART6_SERIALDRIVER is not set
# CONFIG_LPUART7_SERIALDRIVER is not set
# CONFIG_LPUART8_SERIALDRIVER is not set
# CONFIG_USART0_SERIALDRIVER is not set
# CONFIG_USART1_SERIALDRIVER is not set
# CONFIG_USART2_SERIALDRIVER is not set
# CONFIG_USART3_SERIALDRIVER is not set
# CONFIG_USART4_SERIALDRIVER is not set
# CONFIG_USART5_SERIALDRIVER is not set
# CONFIG_USART6_SERIALDRIVER is not set
# CONFIG_USART7_SERIALDRIVER is not set
# CONFIG_USART8_SERIALDRIVER is not set
# CONFIG_USART9_SERIALDRIVER is not set
# CONFIG_SCI0_SERIALDRIVER is not set
# CONFIG_SCI1_SERIALDRIVER is not set
# CONFIG_SCI2_SERIALDRIVER is not set
# CONFIG_SCI3_SERIALDRIVER is not set
# CONFIG_SCI4_SERIALDRIVER is not set
# CONFIG_SCI5_SERIALDRIVER is not set
# CONFIG_SCI6_SERIALDRIVER is not set
# CONFIG_SCI7_SERIALDRIVER is not set
# CONFIG_SCI8_SERIALDRIVER is not set
# CONFIG_SCI9_SERIALDRIVER is not set
# CONFIG_SCI10_SERIALDRIVER is not set
# CONFIG_SCI11_SERIALDRIVER is not set
# CONFIG_SCI12_SERIALDRIVER is not set
# CONFIG_PSEUDOTERM is not set
# CONFIG_UART_BTH4 is not set
# CONFIG_USBDEV is not set
# CONFIG_USBHOST_HAVE_ASYNCH is not set
# CONFIG_USBHOST is not set
# CONFIG_USBMISC is not set
# CONFIG_HAVE_USBTRACE is not set
# CONFIG_DRIVERS_WIRELESS is not set
# CONFIG_DRIVERS_CONTACTLESS is not set
# CONFIG_1WIRE is not set
#
# System Logging
#
# CONFIG_ARCH_SYSLOG is not set
#
# SYSLOG options
#
CONFIG_SYSLOG_MAX_CHANNELS=1
# CONFIG_RAMLOG is not set
# CONFIG_SYSLOG_BUFFER is not set
# CONFIG_SYSLOG_INTBUFFER is not set
#
# Formatting options
#
# CONFIG_SYSLOG_TIMESTAMP is not set
# CONFIG_SYSLOG_PRIORITY is not set
# CONFIG_SYSLOG_PROCESS_NAME is not set
# CONFIG_SYSLOG_PROCESSID is not set
# CONFIG_SYSLOG_PREFIX is not set
# CONFIG_SYSLOG_COLOR_OUTPUT is not set
#
# SYSLOG channels
#
# CONFIG_SYSLOG_CHAR is not set
# CONFIG_SYSLOG_RTT is not set
# CONFIG_SYSLOG_CONSOLE is not set
CONFIG_SYSLOG_DEFAULT=y
# CONFIG_SYSLOG_FILE is not set
# CONFIG_CONSOLE_SYSLOG is not set
# CONFIG_SYSLOG_CHARDEV is not set
CONFIG_DRIVERS_RF=y
# CONFIG_RF_DAT31R5SP is not set
CONFIG_RF_SPI_TEST_DRIVER=y
# CONFIG_DRIVERS_RC is not set
# CONFIG_MOTOR is not set
#
# MATH Acceleration Support
#
# CONFIG_MATH_CORDIC is not set
#
# Networking Support
#
# CONFIG_ARCH_HAVE_NET is not set
# CONFIG_ARCH_HAVE_PHY is not set
# CONFIG_ARCH_PHY_INTERRUPT is not set
# CONFIG_ARCH_PHY_POLLED is not set
# CONFIG_ARCH_HAVE_NETDEV_STATISTICS is not set
# CONFIG_NET_WRITE_BUFFERS is not set
# CONFIG_NET_READAHEAD is not set
# CONFIG_NET_MCASTGROUP is not set
# CONFIG_NET is not set
#
# Crypto API
#
CONFIG_CRYPTO=y
# CONFIG_CRYPTO_AES is not set
# CONFIG_CRYPTO_ALGTEST is not set
# CONFIG_CRYPTO_CRYPTODEV is not set
CONFIG_CRYPTO_BLAKE2S=y
CONFIG_CRYPTO_RANDOM_POOL=y
CONFIG_CRYPTO_RANDOM_POOL_COLLECT_IRQ_RANDOMNESS=y
#
# File Systems
#
#
# File system configuration
#
# CONFIG_DISABLE_MOUNTPOINT is not set
# CONFIG_FS_LARGEFILE is not set
# CONFIG_FS_AUTOMOUNTER is not set
CONFIG_FS_NEPOLL_DESCRIPTORS=8
CONFIG_DISABLE_PSEUDOFS_OPERATIONS=y
CONFIG_SENDFILE_BUFSIZE=512
# CONFIG_EVENT_FD is not set
# CONFIG_TIMER_FD is not set
# CONFIG_FS_NAMED_SEMAPHORES is not set
CONFIG_FS_MQUEUE_VFS_PATH="/var/mqueue"
CONFIG_FS_MQUEUE_NPOLLWAITERS=4
# CONFIG_FS_RAMMAP is not set
#
# Partition Table
#
# CONFIG_PTABLE_PARTITION is not set
# CONFIG_MBR_PARTITION is not set
# CONFIG_GPT_PARTITION is not set
# CONFIG_FS_FAT is not set
# CONFIG_FS_NXFFS is not set
# CONFIG_FS_ROMFS is not set
# CONFIG_FS_CROMFS is not set
# CONFIG_FS_TMPFS is not set
# CONFIG_FS_SMARTFS is not set
# CONFIG_FS_BINFS is not set
CONFIG_FS_PROCFS=y
# CONFIG_FS_PROCFS_REGISTER is not set
CONFIG_FS_PROCFS_MAX_TASKS=128
#
# Exclude individual procfs entries
#
# CONFIG_FS_PROCFS_EXCLUDE_PROCESS is not set
CONFIG_FS_PROCFS_EXCLUDE_ENVIRON=y
# CONFIG_FS_PROCFS_EXCLUDE_BLOCKS is not set
# CONFIG_FS_PROCFS_EXCLUDE_MOUNT is not set
# CONFIG_FS_PROCFS_EXCLUDE_USAGE is not set
# CONFIG_FS_PROCFS_EXCLUDE_UPTIME is not set
# CONFIG_FS_PROCFS_EXCLUDE_VERSION is not set
# CONFIG_FS_PROCFS_EXCLUDE_MEMINFO is not set
# CONFIG_FS_PROCFS_EXCLUDE_MEMDUMP is not set
# CONFIG_FS_PROCFS_EXCLUDE_MOUNTS is not set
# CONFIG_FS_LITTLEFS is not set
# CONFIG_FS_UNIONFS is not set
# CONFIG_FS_HOSTFS is not set
#
# Graphics Support
#
# CONFIG_NX is not set
# CONFIG_NXFONTS is not set
#
# Font Cache Pixel Depths
#
# CONFIG_NXFONTS_DISABLE_1BPP is not set
# CONFIG_NXFONTS_DISABLE_2BPP is not set
# CONFIG_NXFONTS_DISABLE_4BPP is not set
# CONFIG_NXFONTS_DISABLE_8BPP is not set
# CONFIG_NXFONTS_DISABLE_16BPP is not set
# CONFIG_NXFONTS_DISABLE_24BPP is not set
# CONFIG_NXFONTS_DISABLE_32BPP is not set
CONFIG_NXFONTS_PACKEDMSFIRST=y
# CONFIG_NXGLIB is not set
#
# Memory Management
#
CONFIG_MM_DEFAULT_MANAGER=y
# CONFIG_MM_CUSTOMIZE_MANAGER is not set
# CONFIG_MM_SMALL is not set
CONFIG_MM_REGIONS=1
# CONFIG_ARCH_HAVE_HEAP2 is not set
# CONFIG_GRAN is not set
# CONFIG_MM_FILL_ALLOCATIONS is not set
CONFIG_MM_CIRCBUF=y
# CONFIG_MM_KASAN is not set
#
# Common I/O Buffer Support
#
# CONFIG_MM_IOB is not set
#
# Audio Support
#
# CONFIG_AUDIO is not set
#
# Video Support
#
#
# Video subsystem
#
# CONFIG_VIDEO is not set
#
# Wireless Support
#
# CONFIG_WIRELESS is not set
#
# Binary Loader
#
CONFIG_BINFMT_DISABLE=y
#
# Library Routines