blob: d01c3b8db8fc108e512bcdcd05672bb93c2ebc1d (
plain)
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
|
# prod, simu or arduino
MODEL := arduino
#T_CPU = atmega328p
#F_CPU = 16000000UL
# thread functions, 0: reduced or 1: all [0 by default]
#FULL_THREAD = 1
# max count of thread(s), 1 to 6 [1 by default]
#THREAD = 2
# size of timer(s), 0 = 16bits or 1 = 32bits [0 by default]
#BIG_TIMER = 1
# count of timer(s), 1 or 2 [1 by default]
#TIMER = 2
# semaphore functions, 0 or 1 [0 by default]
#SEM = 1
# number of uart(s), 0 to 4 [0 by default]
#UART = 1
# use analog conversion, 0 or 1 [0 by default]
#ADC = 1
# use pulse width modulation, 0 or 1 [0 by default]
#PWM = 1
# use pin change interruption, 0 or 1 [0 by default]
#PCINT = 1
|