diff options
| author | Otto Mattik <otto@mattik.org> | 2021-07-08 18:20:26 +0200 |
|---|---|---|
| committer | Otto Mattik <otto@mattik.org> | 2021-07-08 18:20:26 +0200 |
| commit | 49b9e6e6548bf621e321ff66825fb2e1579db063 (patch) | |
| tree | 0ff23a35f11b6bd84fc39359f819401adfdae536 /options.mak | |
| download | blink-af7e14770b016e6bf29ec15d63bea7ad582ef0d6.tar.gz blink-af7e14770b016e6bf29ec15d63bea7ad582ef0d6.zip | |
Diffstat (limited to 'options.mak')
| -rw-r--r-- | options.mak | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/options.mak b/options.mak new file mode 100644 index 0000000..d01c3b8 --- /dev/null +++ b/options.mak @@ -0,0 +1,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 |
