bring in all the atmel studio stuff

This commit is contained in:
Joey Castillo
2021-07-20 16:26:54 -04:00
parent bc1ee49d80
commit b4b81f476c
249 changed files with 137720 additions and 36817 deletions

View File

@@ -29,11 +29,69 @@ LDFLAGS += -Wl,--script=../linker/saml22j18.ld
INCLUDES += \
-I../include \
-I../hal/ \
-I../hal/documentation/ \
-I../hal/include/ \
-I../hal/src/ \
-I../hal/utils/ \
-I../hal/utils/include/ \
-I../hal/utils/src/ \
-I../hpl/ \
-I../hpl/adc/ \
-I../hpl/core/ \
-I../hpl/dmac/ \
-I../hpl/eic/ \
-I../hpl/gclk/ \
-I../hpl/mclk/ \
-I../hpl/osc32kctrl/ \
-I../hpl/oscctrl/ \
-I../hpl/pm/ \
-I../hpl/port/ \
-I../hpl/rtc/ \
-I../hpl/sercom/ \
-I../hpl/slcd/ \
-I../hpl/systick/ \
-I../hpl/tcc/ \
-I../hpl/tc/ \
-I../hri/ \
-I../config/ \
-I..
SRCS += \
../main.c \
../startup_saml22.c
../startup_saml22.c \
../hal/src/hal_adc_sync.c \
../hal/src/hal_atomic.c \
../hal/src/hal_calendar.c \
../hal/src/hal_delay.c \
../hal/src/hal_ext_irq.c \
../hal/src/hal_gpio.c \
../hal/src/hal_i2c_m_sync.c \
../hal/src/hal_init.c \
../hal/src/hal_io.c \
../hal/src/hal_pwm.c \
../hal/src/hal_slcd_sync.c \
../hal/src/hal_sleep.c \
../hal/utils/src/utils_assert.c \
../hal/utils/src/utils_event.c \
../hal/utils/src/utils_list.c \
../hal/utils/src/utils_syscalls.c \
../hpl/adc/hpl_adc.c \
../hpl/core/hpl_core_m0plus_base.c \
../hpl/core/hpl_init.c \
../hpl/dmac/hpl_dmac.c \
../hpl/eic/hpl_eic.c \
../hpl/gclk/hpl_gclk.c \
../hpl/mclk/hpl_mclk.c \
../hpl/osc32kctrl/hpl_osc32kctrl.c \
../hpl/oscctrl/hpl_oscctrl.c \
../hpl/pm/hpl_pm.c \
../hpl/rtc/hpl_rtc.c \
../hpl/sercom/hpl_sercom.c \
../hpl/slcd/hpl_slcd.c \
../hpl/systick/hpl_systick.c \
../hpl/tcc/hpl_tcc.c \
../hpl/tc/hpl_tc.c
DEFINES += \
-D__SAML22J18A__ \