blob: 46d53fb17e3487eca39e52ea61d41f8c7d4645ce (
plain)
1
2
3
4
5
6
|
avr_ss = ss.source_set()
avr_ss.add(files('boot.c'))
avr_ss.add(when: 'CONFIG_AVR_ATMEGA_MCU', if_true: files('atmega.c'))
avr_ss.add(when: 'CONFIG_ARDUINO', if_true: files('arduino.c'))
hw_arch += {'avr': avr_ss}
|