Kconfig 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729
  1. menu "Device Drivers"
  2. config RT_USING_DEVICE_IPC
  3. bool "Using device drivers IPC"
  4. default y
  5. if RT_USING_DEVICE_IPC
  6. config RT_PIPE_BUFSZ
  7. int "Set pipe buffer size"
  8. default 512
  9. config RT_USING_SYSTEM_WORKQUEUE
  10. bool "Using system default workqueue"
  11. default n
  12. if RT_USING_SYSTEM_WORKQUEUE
  13. config RT_SYSTEM_WORKQUEUE_STACKSIZE
  14. int "The stack size for system workqueue thread"
  15. default 2048
  16. config RT_SYSTEM_WORKQUEUE_PRIORITY
  17. int "The priority level of system workqueue thread"
  18. default 23
  19. endif
  20. endif
  21. config RT_USING_SERIAL
  22. bool "Using serial device drivers"
  23. select RT_USING_DEVICE_IPC
  24. select RT_USING_DEVICE
  25. default y
  26. if RT_USING_SERIAL
  27. config RT_SERIAL_USING_DMA
  28. bool "Enable serial DMA mode"
  29. default y
  30. config RT_SERIAL_RB_BUFSZ
  31. int "Set RX buffer size"
  32. default 64
  33. endif
  34. config RT_USING_CAN
  35. bool "Using CAN device drivers"
  36. default n
  37. if RT_USING_CAN
  38. config RT_CAN_USING_HDR
  39. bool "Enable CAN hardware filter"
  40. default n
  41. endif
  42. config RT_USING_HWTIMER
  43. bool "Using hardware timer device drivers"
  44. default n
  45. config RT_USING_CPUTIME
  46. bool "Enable CPU time for high resolution clock counter"
  47. default n
  48. help
  49. When enable this option, the BSP should provide a rt_clock_cputime_ops
  50. for CPU time by:
  51. const static struct rt_clock_cputime_ops _ops = {...};
  52. clock_cpu_setops(&_ops);
  53. Then user can use high resolution clock counter with:
  54. ts1 = clock_cpu_gettime();
  55. ts2 = clock_cpu_gettime();
  56. /* and get the ms of delta tick with API: */
  57. ms_tick = clock_cpu_millisecond(t2 - t1);
  58. us_tick = clock_cpu_microsecond(t2 - t1);
  59. if RT_USING_CPUTIME
  60. config RT_USING_CPUTIME_CORTEXM
  61. bool "Use DWT for CPU time"
  62. default y
  63. depends on ARCH_ARM_CORTEX_M3 || ARCH_ARM_CORTEX_M4 || ARCH_ARM_CORTEX_M7
  64. help
  65. Some Cortex-M3/4/7 MCU has Data Watchpoint and Trace Register, use
  66. the cycle counter in DWT for CPU time.
  67. endif
  68. config RT_USING_I2C
  69. bool "Using I2C device drivers"
  70. default n
  71. if RT_USING_I2C
  72. config RT_USING_I2C_BITOPS
  73. bool "Use GPIO to simulate I2C"
  74. default y
  75. endif
  76. config RT_USING_PIN
  77. bool "Using generic GPIO device drivers"
  78. default y
  79. config RT_USING_ADC
  80. bool "Using ADC device drivers"
  81. default n
  82. config RT_USING_PWM
  83. bool "Using PWM device drivers"
  84. default n
  85. config RT_USING_MTD_NOR
  86. bool "Using MTD Nor Flash device drivers"
  87. default n
  88. config RT_USING_MTD_NAND
  89. bool "Using MTD Nand Flash device drivers"
  90. default n
  91. if RT_USING_MTD_NAND
  92. config RT_MTD_NAND_DEBUG
  93. bool "Enable MTD Nand operations debug information"
  94. default n
  95. endif
  96. config RT_USING_PM
  97. bool "Using Power Management device drivers"
  98. default n
  99. config RT_USING_RTC
  100. bool "Using RTC device drivers"
  101. select RT_USING_LIBC
  102. default n
  103. if RT_USING_RTC
  104. config RT_USING_ALARM
  105. bool "Using RTC alarm"
  106. default n
  107. config RT_USING_SOFT_RTC
  108. bool "Using software simulation RTC device"
  109. default n
  110. config RTC_SYNC_USING_NTP
  111. bool "Using NTP auto sync RTC time"
  112. depends on PKG_NETUTILS_NTP
  113. default y
  114. if RTC_SYNC_USING_NTP
  115. config RTC_NTP_FIRST_SYNC_DELAY
  116. int "NTP first sync delay time(second) for network connect"
  117. default 30
  118. config RTC_NTP_SYNC_PERIOD
  119. int "NTP auto sync period(second)"
  120. default 3600
  121. endif
  122. endif
  123. config RT_USING_SDIO
  124. bool "Using SD/MMC device drivers"
  125. default n
  126. if RT_USING_SDIO
  127. config RT_SDIO_STACK_SIZE
  128. int "The stack size for sdio irq thread"
  129. default 512
  130. config RT_SDIO_THREAD_PRIORITY
  131. int "The priority level value of sdio irq thread"
  132. default 15
  133. config RT_MMCSD_STACK_SIZE
  134. int "The stack size for mmcsd thread"
  135. default 1024
  136. config RT_MMCSD_THREAD_PREORITY
  137. int "The priority level value of mmcsd thread"
  138. default 22
  139. config RT_MMCSD_MAX_PARTITION
  140. int "mmcsd max partition"
  141. default 16
  142. config RT_SDIO_DEBUG
  143. bool "Enable SDIO debug log output"
  144. default n
  145. endif
  146. config RT_USING_SPI
  147. bool "Using SPI Bus/Device device drivers"
  148. default n
  149. if RT_USING_SPI
  150. config RT_USING_QSPI
  151. bool "Enable QSPI mode"
  152. default n
  153. config RT_USING_SPI_MSD
  154. bool "Using SD/TF card driver with spi"
  155. select RT_USING_DFS
  156. default n
  157. config RT_USING_SFUD
  158. bool "Using Serial Flash Universal Driver"
  159. default n
  160. help
  161. An using JEDEC's SFDP standard serial (SPI) flash universal driver library
  162. if RT_USING_SFUD
  163. config RT_SFUD_USING_SFDP
  164. bool "Using auto probe flash JEDEC SFDP parameter"
  165. default y
  166. config RT_SFUD_USING_FLASH_INFO_TABLE
  167. bool "Using defined supported flash chip information table"
  168. default y
  169. config RT_SFUD_USING_QSPI
  170. bool "Using QSPI mode support"
  171. select RT_USING_QSPI
  172. default n
  173. config RT_DEBUG_SFUD
  174. bool "Show more SFUD debug information"
  175. default n
  176. endif
  177. config RT_USING_ENC28J60
  178. bool "Using ENC28J60 SPI Ethernet network interface"
  179. select RT_USING_LWIP
  180. default n
  181. config RT_USING_SPI_WIFI
  182. bool "Using RW009/007 SPI Wi-Fi wireless interface"
  183. select RT_USING_LWIP
  184. default n
  185. endif
  186. config RT_USING_WDT
  187. bool "Using Watch Dog device drivers"
  188. default n
  189. config RT_USING_AUDIO
  190. bool "Using Audio device drivers"
  191. default n
  192. config RT_USING_SENSOR
  193. bool "Using Sensor device drivers"
  194. select RT_USING_PIN
  195. default n
  196. if RT_USING_SENSOR
  197. config RT_USING_SENSOR_CMD
  198. bool "Using Sensor cmd"
  199. default y
  200. endif
  201. config RT_USING_TOUCH
  202. bool "Using Touch device drivers"
  203. default n
  204. menuconfig RT_USING_HWCRYPTO
  205. bool "Using Hardware Crypto drivers"
  206. default n
  207. if RT_USING_HWCRYPTO
  208. config RT_HWCRYPTO_DEFAULT_NAME
  209. string "Hardware crypto device name"
  210. default "hwcryto"
  211. config RT_HWCRYPTO_IV_MAX_SIZE
  212. int "IV max size"
  213. default "16"
  214. config RT_HWCRYPTO_KEYBIT_MAX_SIZE
  215. int "Key max bit length"
  216. default 256
  217. config RT_HWCRYPTO_USING_GCM
  218. bool "Using Hardware GCM"
  219. default n
  220. config RT_HWCRYPTO_USING_AES
  221. bool "Using Hardware AES"
  222. default n
  223. if RT_HWCRYPTO_USING_AES
  224. config RT_HWCRYPTO_USING_AES_ECB
  225. bool "Using Hardware AES ECB mode"
  226. default y
  227. config RT_HWCRYPTO_USING_AES_CBC
  228. bool "Using Hardware AES CBC mode"
  229. default n
  230. config RT_HWCRYPTO_USING_AES_CFB
  231. bool "Using Hardware AES CFB mode"
  232. default n
  233. config RT_HWCRYPTO_USING_AES_CTR
  234. bool "Using Hardware AES CTR mode"
  235. default n
  236. config RT_HWCRYPTO_USING_AES_OFB
  237. bool "Using Hardware AES OFB mode"
  238. default n
  239. endif
  240. config RT_HWCRYPTO_USING_DES
  241. bool "Using Hardware DES"
  242. default n
  243. if RT_HWCRYPTO_USING_DES
  244. config RT_HWCRYPTO_USING_DES_ECB
  245. bool "Using Hardware DES ECB mode"
  246. default y
  247. config RT_HWCRYPTO_USING_DES_CBC
  248. bool "Using Hardware DES CBC mode"
  249. default n
  250. endif
  251. config RT_HWCRYPTO_USING_3DES
  252. bool "Using Hardware 3DES"
  253. default n
  254. if RT_HWCRYPTO_USING_3DES
  255. config RT_HWCRYPTO_USING_3DES_ECB
  256. bool "Using Hardware 3DES ECB mode"
  257. default y
  258. config RT_HWCRYPTO_USING_3DES_CBC
  259. bool "Using Hardware 3DES CBC mode"
  260. default n
  261. endif
  262. config RT_HWCRYPTO_USING_RC4
  263. bool "Using Hardware RC4"
  264. default n
  265. config RT_HWCRYPTO_USING_MD5
  266. bool "Using Hardware MD5"
  267. default n
  268. config RT_HWCRYPTO_USING_SHA1
  269. bool "Using Hardware SHA1"
  270. default n
  271. config RT_HWCRYPTO_USING_SHA2
  272. bool "Using Hardware SHA2"
  273. default n
  274. if RT_HWCRYPTO_USING_SHA2
  275. config RT_HWCRYPTO_USING_SHA2_224
  276. bool "Using Hardware SHA2_224 mode"
  277. default n
  278. config RT_HWCRYPTO_USING_SHA2_256
  279. bool "Using Hardware SHA2_256 mode"
  280. default y
  281. config RT_HWCRYPTO_USING_SHA2_384
  282. bool "Using Hardware SHA2_384 mode"
  283. default n
  284. config RT_HWCRYPTO_USING_SHA2_512
  285. bool "Using Hardware SHA2_512 mode"
  286. default n
  287. endif
  288. config RT_HWCRYPTO_USING_RNG
  289. bool "Using Hardware RNG"
  290. default n
  291. config RT_HWCRYPTO_USING_CRC
  292. bool "Using Hardware CRC"
  293. default n
  294. if RT_HWCRYPTO_USING_CRC
  295. config RT_HWCRYPTO_USING_CRC_07
  296. bool "Using Hardware CRC-8 0x07 polynomial"
  297. default n
  298. config RT_HWCRYPTO_USING_CRC_8005
  299. bool "Using Hardware CRC-16 0x8005 polynomial"
  300. default n
  301. config RT_HWCRYPTO_USING_CRC_1021
  302. bool "Using Hardware CRC-16 0x1021 polynomial"
  303. default n
  304. config RT_HWCRYPTO_USING_CRC_3D65
  305. bool "Using Hardware CRC-16 0x3D65 polynomial"
  306. default n
  307. config RT_HWCRYPTO_USING_CRC_04C11DB7
  308. bool "Using Hardware CRC-32 0x04C11DB7 polynomial"
  309. default n
  310. endif
  311. config RT_HWCRYPTO_USING_BIGNUM
  312. bool "Using Hardware bignum"
  313. default n
  314. if RT_HWCRYPTO_USING_BIGNUM
  315. config RT_HWCRYPTO_USING_BIGNUM_EXPTMOD
  316. bool "Using Hardware bignum expt_mod operation"
  317. default y
  318. config RT_HWCRYPTO_USING_BIGNUM_MULMOD
  319. bool "Using Hardware bignum mul_mod operation"
  320. default y
  321. config RT_HWCRYPTO_USING_BIGNUM_MUL
  322. bool "Using Hardware bignum mul operation"
  323. default n
  324. config RT_HWCRYPTO_USING_BIGNUM_ADD
  325. bool "Using Hardware bignum add operation"
  326. default n
  327. config RT_HWCRYPTO_USING_BIGNUM_SUB
  328. bool "Using Hardware bignum sub operation"
  329. default n
  330. endif
  331. endif
  332. menuconfig RT_USING_WIFI
  333. bool "Using Wi-Fi framework"
  334. default n
  335. if RT_USING_WIFI
  336. config RT_WLAN_DEVICE_STA_NAME
  337. string "The device name for station"
  338. default "wlan0"
  339. config RT_WLAN_DEVICE_AP_NAME
  340. string "The device name for ap"
  341. default "wlan1"
  342. config RT_WLAN_SSID_MAX_LENGTH
  343. int "SSID maximum length"
  344. default 32
  345. config RT_WLAN_PASSWORD_MAX_LENGTH
  346. int "Password maximum length"
  347. default 32
  348. config RT_WLAN_DEV_EVENT_NUM
  349. int "Driver events maxcount"
  350. default 2
  351. config RT_WLAN_MANAGE_ENABLE
  352. bool "Connection management Enable"
  353. default y
  354. if RT_WLAN_MANAGE_ENABLE
  355. config RT_WLAN_SCAN_WAIT_MS
  356. int "Set scan timeout time(ms)"
  357. default 10000
  358. config RT_WLAN_CONNECT_WAIT_MS
  359. int "Set connect timeout time(ms)"
  360. default 10000
  361. config RT_WLAN_SCAN_SORT
  362. bool "Automatic sorting of scan results"
  363. default y
  364. config RT_WLAN_MSH_CMD_ENABLE
  365. bool "MSH command Enable"
  366. default y
  367. config RT_WLAN_AUTO_CONNECT_ENABLE
  368. bool "Auto connect Enable"
  369. select RT_WLAN_CFG_ENABLE
  370. select RT_WLAN_WORK_THREAD_ENABLE
  371. default y
  372. if RT_WLAN_AUTO_CONNECT_ENABLE
  373. config AUTO_CONNECTION_PERIOD_MS
  374. int "Auto connect period(ms)"
  375. default 2000
  376. endif
  377. endif
  378. config RT_WLAN_CFG_ENABLE
  379. bool "WiFi information automatically saved Enable"
  380. default y
  381. if RT_WLAN_CFG_ENABLE
  382. config RT_WLAN_CFG_INFO_MAX
  383. int "Maximum number of WiFi information automatically saved"
  384. default 3
  385. endif
  386. config RT_WLAN_PROT_ENABLE
  387. bool "Transport protocol manage Enable"
  388. default y
  389. if RT_WLAN_PROT_ENABLE
  390. config RT_WLAN_PROT_NAME_LEN
  391. int "Transport protocol name length"
  392. default 8
  393. config RT_WLAN_PROT_MAX
  394. int "Transport protocol maxcount"
  395. default 2
  396. config RT_WLAN_DEFAULT_PROT
  397. string "Default transport protocol"
  398. default "lwip"
  399. config RT_WLAN_PROT_LWIP_ENABLE
  400. bool "LWIP transport protocol Enable"
  401. select RT_USING_LWIP
  402. default y
  403. if RT_WLAN_PROT_LWIP_ENABLE
  404. config RT_WLAN_PROT_LWIP_NAME
  405. string "LWIP transport protocol name"
  406. default "lwip"
  407. config RT_WLAN_PROT_LWIP_PBUF_FORCE
  408. bool "Forced use of PBUF transmission"
  409. default n
  410. endif
  411. endif
  412. config RT_WLAN_WORK_THREAD_ENABLE
  413. bool "WLAN work queue thread Enable"
  414. default y
  415. if RT_WLAN_WORK_THREAD_ENABLE
  416. config RT_WLAN_WORKQUEUE_THREAD_NAME
  417. string "WLAN work queue thread name"
  418. default "wlan"
  419. config RT_WLAN_WORKQUEUE_THREAD_SIZE
  420. int "WLAN work queue thread size"
  421. default 2048
  422. config RT_WLAN_WORKQUEUE_THREAD_PRIO
  423. int "WLAN work queue thread priority"
  424. default 15
  425. endif
  426. menuconfig RT_WLAN_DEBUG
  427. bool "Enable WLAN Debugging Options"
  428. default n
  429. if RT_WLAN_DEBUG
  430. config RT_WLAN_CMD_DEBUG
  431. bool "Enable Debugging of wlan_cmd.c"
  432. default n
  433. config RT_WLAN_MGNT_DEBUG
  434. bool "Enable Debugging of wlan_mgnt.c"
  435. default n
  436. config RT_WLAN_DEV_DEBUG
  437. bool "Enable Debugging of wlan_dev.c"
  438. default n
  439. config RT_WLAN_PROT_DEBUG
  440. bool "Enable Debugging of wlan_prot.c"
  441. default n
  442. config RT_WLAN_CFG_DEBUG
  443. bool "Enable Debugging of wlan_cfg.c"
  444. default n
  445. config RT_WLAN_LWIP_DEBUG
  446. bool "Enable Debugging of wlan_lwip.c"
  447. default n
  448. endif
  449. endif
  450. menu "Using USB"
  451. config RT_USING_USB_HOST
  452. bool "Using USB host"
  453. default n
  454. if RT_USING_USB_HOST
  455. config RT_USBH_MSTORAGE
  456. bool "Enable Udisk Drivers"
  457. default n
  458. if RT_USBH_MSTORAGE
  459. config UDISK_MOUNTPOINT
  460. string "Udisk mount dir"
  461. default "/"
  462. endif
  463. endif
  464. config RT_USING_USB_DEVICE
  465. bool "Using USB device"
  466. default n
  467. if RT_USING_USB_DEVICE || RT_USING_USB_HOST
  468. config RT_USBD_THREAD_STACK_SZ
  469. int "usb thread stack size"
  470. default 4096
  471. endif
  472. if RT_USING_USB_DEVICE
  473. config USB_VENDOR_ID
  474. hex "USB Vendor ID"
  475. default 0x0FFE
  476. config USB_PRODUCT_ID
  477. hex "USB Product ID"
  478. default 0x0001
  479. config RT_USB_DEVICE_COMPOSITE
  480. bool "Enable composite device"
  481. default n
  482. choice
  483. prompt "Device type"
  484. default _RT_USB_DEVICE_NONE
  485. depends on !RT_USB_DEVICE_COMPOSITE
  486. config _RT_USB_DEVICE_NONE
  487. bool "Using custom class by register interface"
  488. select RT_USB_DEVICE_NONE
  489. config _RT_USB_DEVICE_CDC
  490. bool "Enable to use device as CDC device"
  491. select RT_USB_DEVICE_CDC
  492. config _RT_USB_DEVICE_MSTORAGE
  493. bool "Enable to use device as Mass Storage device"
  494. select RT_USB_DEVICE_MSTORAGE
  495. config _RT_USB_DEVICE_HID
  496. bool "Enable to use device as HID device"
  497. select RT_USB_DEVICE_HID
  498. config _RT_USB_DEVICE_RNDIS
  499. bool "Enable to use device as rndis device"
  500. select RT_USB_DEVICE_RNDIS
  501. depends on RT_USING_LWIP
  502. config _RT_USB_DEVICE_ECM
  503. bool "Enable to use device as ecm device"
  504. select RT_USB_DEVICE_ECM
  505. depends on RT_USING_LWIP
  506. config _RT_USB_DEVICE_WINUSB
  507. bool "Enable to use device as winusb device"
  508. select RT_USB_DEVICE_WINUSB
  509. endchoice
  510. if RT_USB_DEVICE_COMPOSITE
  511. config RT_USB_DEVICE_CDC
  512. bool "Enable to use device as CDC device"
  513. default n
  514. config RT_USB_DEVICE_NONE
  515. bool
  516. default y
  517. config RT_USB_DEVICE_MSTORAGE
  518. bool "Enable to use device as Mass Storage device"
  519. default n
  520. config RT_USB_DEVICE_HID
  521. bool "Enable to use device as HID device"
  522. default n
  523. config RT_USB_DEVICE_RNDIS
  524. bool "Enable to use device as rndis device"
  525. default n
  526. depends on RT_USING_LWIP
  527. config RT_USB_DEVICE_ECM
  528. bool "Enable to use device as ecm device"
  529. default n
  530. depends on RT_USING_LWIP
  531. config RT_USB_DEVICE_WINUSB
  532. bool "Enable to use device as winusb device"
  533. default n
  534. endif
  535. if RT_USB_DEVICE_CDC
  536. config RT_VCOM_TASK_STK_SIZE
  537. int "virtual com thread stack size"
  538. default 512
  539. config RT_VCOM_TX_USE_DMA
  540. bool "Enable to use dma for vcom tx"
  541. default n
  542. config RT_VCOM_SERNO
  543. string "serial number of virtual com"
  544. default "32021919830108"
  545. config RT_VCOM_SER_LEN
  546. int "serial number length of virtual com"
  547. default 14
  548. config RT_VCOM_TX_TIMEOUT
  549. int "tx timeout(ticks) of virtual com"
  550. default 1000
  551. endif
  552. if RT_USB_DEVICE_WINUSB
  553. config RT_WINUSB_GUID
  554. string "Guid for winusb"
  555. default "{6860DC3C-C05F-4807-8807-1CA861CC1D66}"
  556. endif
  557. if RT_USB_DEVICE_MSTORAGE
  558. config RT_USB_MSTORAGE_DISK_NAME
  559. string "msc class disk name"
  560. default "flash0"
  561. endif
  562. if RT_USB_DEVICE_RNDIS
  563. config RNDIS_DELAY_LINK_UP
  564. bool "Delay linkup media connection"
  565. select RT_USING_TIMER_SOFT
  566. default n
  567. endif
  568. if RT_USB_DEVICE_HID
  569. config RT_USB_DEVICE_HID_KEYBOARD
  570. bool "Use to HID device as Keyboard"
  571. default n
  572. if RT_USB_DEVICE_HID_KEYBOARD
  573. config RT_USB_DEVICE_HID_KEYBOARD_NUMBER
  574. int "Number of Keyboard(max 3)"
  575. default 1
  576. range 1 3
  577. endif
  578. config RT_USB_DEVICE_HID_MOUSE
  579. bool "Use to HID device as Mouse"
  580. default n
  581. config RT_USB_DEVICE_HID_GENERAL
  582. bool "Use to HID device as General HID device"
  583. default y
  584. if RT_USB_DEVICE_HID_GENERAL
  585. config RT_USB_DEVICE_HID_GENERAL_OUT_REPORT_LENGTH
  586. int "General HID device out report length"
  587. default 63
  588. range 0 63
  589. config RT_USB_DEVICE_HID_GENERAL_IN_REPORT_LENGTH
  590. int "General HID device in report length"
  591. default 63
  592. range 0 63
  593. endif
  594. config RT_USB_DEVICE_HID_MEDIA
  595. bool "Use to HID device as media keyboard"
  596. default y
  597. endif
  598. endif
  599. endmenu
  600. endmenu