forked from arduino/ArduinoCore-zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
53 lines (41 loc) · 893 Bytes
/
Kconfig
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
#
# Copyright (c) 2022 Dhruva Gole
#
# SPDX-License-Identifier: Apache-2.0
#
config ARDUINO_API
bool "ARDUINO_API"
imply CPP
imply GPIO
imply I2C
imply NEWLIB_LIBC_FLOAT_PRINTF
imply CBPRINTF_FP_SUPPORT
imply RING_BUFFER
select UART_INTERRUPT_DRIVEN
default n
if ARDUINO_API
config QEMU_ICOUNT
bool "QEMU icount mode"
default n
depends on QEMU_TARGET
config ARDUINO_API_SERIAL_BUFFER_SIZE
int "Buffer size for Arduino Serial API"
default 64
config ARDUINO_ENTRY
bool "Provide arduino setup and loop entry points"
default y
endif
if USB_DEVICE_STACK_NEXT
config USB_DEVICE_PRODUCT
string "USB Device Product"
default "Arduino Generic board"
config USB_DEVICE_MANUFACTURER
string "USB Device Manufacturer"
default "Arduino"
config USB_DEVICE_VID
hex "USB Device Vendor ID"
default 0x2341
config USB_DEVICE_PID
hex "USB Device Product ID"
default 0x0001
endif