├── .gitignore ├── LICENSE ├── README.md ├── documentation ├── docs │ ├── api.md │ ├── assets │ │ ├── img │ │ │ ├── 7-segment-display.png │ │ │ ├── keypad.png │ │ │ └── sapi-modulos-capas.png │ │ └── pdf │ │ │ ├── EDU-CIAA-NXP_Pinout_A4_v4r3_ES.pdf │ │ │ ├── sAPI-01-Introducción.pdf │ │ │ ├── sAPI-02-Diseño.pdf │ │ │ ├── sAPI-03-API.pdf │ │ │ ├── sAPI-04-Utilización.pdf │ │ │ └── sAPI-05-Ejemplos.pdf │ ├── diseno.md │ ├── ejemplos.md │ └── index.md ├── mkdocs.yml └── sAPI_PeripheralMap.txt ├── examples ├── sapi_edu-ciaa-nxp │ ├── adc_dac_01 │ │ ├── EDU-CIAA-NXP Tiras de pines y Potenciómetro.pdf │ │ ├── Makefile │ │ ├── inc │ │ │ └── adc_dac.h │ │ └── src │ │ │ └── adc_dac.c │ ├── cooperative_os_scheduler_01_seos │ │ ├── Makefile │ │ ├── inc │ │ │ └── seos.h │ │ └── src │ │ │ └── seos.c │ ├── cooperative_os_scheduler_02_seos_background_foreground │ │ ├── Makefile │ │ ├── inc │ │ │ ├── seos_bakground_foreground.h │ │ │ ├── seos_bakground_foreground_app.h │ │ │ └── tasks.h │ │ └── src │ │ │ ├── seos_bakground_foreground.c │ │ │ ├── seos_bakground_foreground_app.c │ │ │ └── tasks.c │ ├── gpio_01_switches_leds │ │ ├── Makefile │ │ ├── inc │ │ │ └── switches_leds.h │ │ └── src │ │ │ └── switches_leds.c │ ├── gpio_02_blinky │ │ ├── Makefile │ │ ├── inc │ │ │ └── blinky.h │ │ └── src │ │ │ └── blinky.c │ ├── gpio_03_blinky_switch │ │ ├── Makefile │ │ ├── inc │ │ │ └── blinky_switch.h │ │ └── src │ │ │ └── blinky_switch.c │ ├── gpio_04_led_sequences │ │ ├── Makefile │ │ ├── inc │ │ │ └── led_sequences.h │ │ └── src │ │ │ └── led_sequences.c │ ├── gpio_05_keypad_7segment │ │ ├── 7 segmentos EDU-CIAA.png │ │ ├── Makefile │ │ ├── Teclado Matricial EDU-CIAA.png │ │ ├── inc │ │ │ └── keypad_7segment.h │ │ └── src │ │ │ └── keypad_7segment.c │ ├── i2c_01_hmc5883l │ │ ├── HMC5883L_EDU-CIAA.png │ │ ├── Makefile │ │ ├── inc │ │ │ └── hmc5883l.h │ │ └── src │ │ │ └── hmc5883l.c │ ├── pwm_01 │ │ ├── Makefile │ │ ├── inc │ │ │ └── pwm.h │ │ └── src │ │ │ └── pwm.c │ ├── rtc_01 │ │ ├── Makefile │ │ ├── inc │ │ │ └── rtc.h │ │ └── src │ │ │ └── rtc.c │ ├── servo_01 │ │ ├── Makefile │ │ ├── inc │ │ │ └── servo.h │ │ └── src │ │ │ └── servo.c │ ├── spi_01_sdcard_fatfilesystem │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── SD SPI.png │ │ ├── inc │ │ │ └── sd_spi.h │ │ └── src │ │ │ └── sd_spi.c │ ├── tick_01_tickHook │ │ ├── Makefile │ │ ├── inc │ │ │ └── tickHook.h │ │ └── src │ │ │ └── tickHook.c │ ├── uart_01_echo │ │ ├── Makefile │ │ ├── inc │ │ │ └── uart.h │ │ └── src │ │ │ └── uart.c │ ├── uart_02_receive_string_blocking │ │ ├── Makefile │ │ ├── inc │ │ │ └── uart_receive_string_blocking.h │ │ └── src │ │ │ └── uart_receive_string_blocking.c │ ├── uart_03_receive_string │ │ ├── Makefile │ │ ├── inc │ │ │ └── uart_receive_string.h │ │ └── src │ │ │ └── uart_receive_string.c │ └── uart_04_bridge_esp8266 │ │ ├── 4a-esp8266_at_instruction_set_en.pdf │ │ ├── ESP8266ATCommandsSet.pdf │ │ ├── ESP8266_EDU-CIAA.png │ │ ├── Makefile │ │ ├── inc │ │ └── uartBridge_ESP8266.h │ │ └── src │ │ └── uartBridge_ESP8266.c └── sapi_rtos_edu-ciaa-nxp │ ├── freeOSEK_01_blinky │ ├── Makefile │ ├── README.md │ ├── freeOSEK_01_blinky.oil │ ├── inc │ │ └── blinky.h │ └── src │ │ └── blinky.c │ ├── freeRTOS_01_blinky │ ├── Makefile │ ├── README.md │ ├── inc │ │ ├── FreeRTOSConfig.h │ │ └── newlib_stubs.h │ └── src │ │ ├── freeRTOS_01_blinky.c │ │ └── newlib_stubs.c │ ├── freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log │ ├── Makefile │ ├── README.md │ ├── SD SPI.png │ ├── inc │ │ ├── FreeRTOSConfig.h │ │ ├── newlib_stubs.h │ │ └── sd_spi.h │ └── src │ │ ├── freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log.c │ │ └── newlib_stubs.c │ └── freeRTOS_03_Queue │ ├── Makefile │ ├── README.md │ ├── inc │ ├── FreeRTOSConfig.h │ ├── main.h │ └── newlib_stubs.h │ └── src │ ├── freeRTOS_03_Queue.c │ └── newlib_stubs.c ├── libs ├── sapi │ ├── LICENSE │ ├── Makefile │ ├── inc │ │ ├── sapi.h │ │ ├── sapi_7_segment_display.h │ │ ├── sapi_adc.h │ │ ├── sapi_board.h │ │ ├── sapi_circularBuffer.h │ │ ├── sapi_consolePrint.h │ │ ├── sapi_convert.h │ │ ├── sapi_dac.h │ │ ├── sapi_datatypes.h │ │ ├── sapi_debugPrint.h │ │ ├── sapi_delay.h │ │ ├── sapi_gpio.h │ │ ├── sapi_hmc5883l.h │ │ ├── sapi_i2c.h │ │ ├── sapi_keypad.h │ │ ├── sapi_peripheral_map.h │ │ ├── sapi_print.h │ │ ├── sapi_pwm.h │ │ ├── sapi_rtc.h │ │ ├── sapi_sct.h │ │ ├── sapi_servo.h │ │ ├── sapi_sleep.h │ │ ├── sapi_spi.h │ │ ├── sapi_tick.h │ │ ├── sapi_timer.h │ │ └── sapi_uart.h │ └── src │ │ ├── sapi_7_segment_display.c │ │ ├── sapi_adc.c │ │ ├── sapi_board.c │ │ ├── sapi_circularBuffer.c │ │ ├── sapi_convert.c │ │ ├── sapi_dac.c │ │ ├── sapi_datatypes.c │ │ ├── sapi_delay.c │ │ ├── sapi_gpio.c │ │ ├── sapi_hmc5883l.c │ │ ├── sapi_i2c.c │ │ ├── sapi_keypad.c │ │ ├── sapi_print.c │ │ ├── sapi_pwm.c │ │ ├── sapi_rtc.c │ │ ├── sapi_sct.c │ │ ├── sapi_servo.c │ │ ├── sapi_sleep.c │ │ ├── sapi_spi.c │ │ ├── sapi_tick.c │ │ ├── sapi_timer.c │ │ └── sapi_uart.c └── sapi_rtos │ ├── LICENSE │ ├── inc │ ├── sapi.h │ ├── sapi_7_segment_display.h │ ├── sapi_adc.h │ ├── sapi_board.h │ ├── sapi_circularBuffer.h │ ├── sapi_consolePrint.h │ ├── sapi_convert.h │ ├── sapi_dac.h │ ├── sapi_datatypes.h │ ├── sapi_debugPrint.h │ ├── sapi_gpio.h │ ├── sapi_hmc5883l.h │ ├── sapi_i2c.h │ ├── sapi_keypad.h │ ├── sapi_peripheral_map.h │ ├── sapi_print.h │ ├── sapi_rtc.h │ ├── sapi_sleep.h │ ├── sapi_spi.h │ └── sapi_uart.h │ └── src │ ├── sapi_7_segment_display.c │ ├── sapi_adc.c │ ├── sapi_board.c │ ├── sapi_circularBuffer.c │ ├── sapi_convert.c │ ├── sapi_dac.c │ ├── sapi_datatypes.c │ ├── sapi_gpio.c │ ├── sapi_hmc5883l.c │ ├── sapi_i2c.c │ ├── sapi_keypad.c │ ├── sapi_print.c │ ├── sapi_rtc.c │ ├── sapi_sleep.c │ ├── sapi_spi.c │ └── sapi_uart.c └── utilities ├── CIAA-Eclipse-C-Profile.xml └── Linux-Tools-Path.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/README.md -------------------------------------------------------------------------------- /documentation/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/api.md -------------------------------------------------------------------------------- /documentation/docs/assets/img/7-segment-display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/assets/img/7-segment-display.png -------------------------------------------------------------------------------- /documentation/docs/assets/img/keypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/assets/img/keypad.png -------------------------------------------------------------------------------- /documentation/docs/assets/img/sapi-modulos-capas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/assets/img/sapi-modulos-capas.png -------------------------------------------------------------------------------- /documentation/docs/assets/pdf/EDU-CIAA-NXP_Pinout_A4_v4r3_ES.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/assets/pdf/EDU-CIAA-NXP_Pinout_A4_v4r3_ES.pdf -------------------------------------------------------------------------------- /documentation/docs/assets/pdf/sAPI-01-Introducción.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/assets/pdf/sAPI-01-Introducción.pdf -------------------------------------------------------------------------------- /documentation/docs/assets/pdf/sAPI-02-Diseño.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/assets/pdf/sAPI-02-Diseño.pdf -------------------------------------------------------------------------------- /documentation/docs/assets/pdf/sAPI-03-API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/assets/pdf/sAPI-03-API.pdf -------------------------------------------------------------------------------- /documentation/docs/assets/pdf/sAPI-04-Utilización.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/assets/pdf/sAPI-04-Utilización.pdf -------------------------------------------------------------------------------- /documentation/docs/assets/pdf/sAPI-05-Ejemplos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/assets/pdf/sAPI-05-Ejemplos.pdf -------------------------------------------------------------------------------- /documentation/docs/diseno.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/diseno.md -------------------------------------------------------------------------------- /documentation/docs/ejemplos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/ejemplos.md -------------------------------------------------------------------------------- /documentation/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/docs/index.md -------------------------------------------------------------------------------- /documentation/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/mkdocs.yml -------------------------------------------------------------------------------- /documentation/sAPI_PeripheralMap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/documentation/sAPI_PeripheralMap.txt -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/adc_dac_01/EDU-CIAA-NXP Tiras de pines y Potenciómetro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/adc_dac_01/EDU-CIAA-NXP Tiras de pines y Potenciómetro.pdf -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/adc_dac_01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/adc_dac_01/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/adc_dac_01/inc/adc_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/adc_dac_01/inc/adc_dac.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/adc_dac_01/src/adc_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/adc_dac_01/src/adc_dac.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_01_seos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_01_seos/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_01_seos/inc/seos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_01_seos/inc/seos.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_01_seos/src/seos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_01_seos/src/seos.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/inc/seos_bakground_foreground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/inc/seos_bakground_foreground.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/inc/seos_bakground_foreground_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/inc/seos_bakground_foreground_app.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/inc/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/inc/tasks.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/src/seos_bakground_foreground.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/src/seos_bakground_foreground.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/src/seos_bakground_foreground_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/src/seos_bakground_foreground_app.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/src/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/cooperative_os_scheduler_02_seos_background_foreground/src/tasks.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_01_switches_leds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_01_switches_leds/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_01_switches_leds/inc/switches_leds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_01_switches_leds/inc/switches_leds.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_01_switches_leds/src/switches_leds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_01_switches_leds/src/switches_leds.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_02_blinky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_02_blinky/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_02_blinky/inc/blinky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_02_blinky/inc/blinky.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_02_blinky/src/blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_02_blinky/src/blinky.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_03_blinky_switch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_03_blinky_switch/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_03_blinky_switch/inc/blinky_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_03_blinky_switch/inc/blinky_switch.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_03_blinky_switch/src/blinky_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_03_blinky_switch/src/blinky_switch.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_04_led_sequences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_04_led_sequences/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_04_led_sequences/inc/led_sequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_04_led_sequences/inc/led_sequences.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_04_led_sequences/src/led_sequences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_04_led_sequences/src/led_sequences.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_05_keypad_7segment/7 segmentos EDU-CIAA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_05_keypad_7segment/7 segmentos EDU-CIAA.png -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_05_keypad_7segment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_05_keypad_7segment/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_05_keypad_7segment/Teclado Matricial EDU-CIAA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_05_keypad_7segment/Teclado Matricial EDU-CIAA.png -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_05_keypad_7segment/inc/keypad_7segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_05_keypad_7segment/inc/keypad_7segment.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/gpio_05_keypad_7segment/src/keypad_7segment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/gpio_05_keypad_7segment/src/keypad_7segment.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/i2c_01_hmc5883l/HMC5883L_EDU-CIAA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/i2c_01_hmc5883l/HMC5883L_EDU-CIAA.png -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/i2c_01_hmc5883l/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/i2c_01_hmc5883l/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/i2c_01_hmc5883l/inc/hmc5883l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/i2c_01_hmc5883l/inc/hmc5883l.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/i2c_01_hmc5883l/src/hmc5883l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/i2c_01_hmc5883l/src/hmc5883l.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/pwm_01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/pwm_01/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/pwm_01/inc/pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/pwm_01/inc/pwm.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/pwm_01/src/pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/pwm_01/src/pwm.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/rtc_01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/rtc_01/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/rtc_01/inc/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/rtc_01/inc/rtc.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/rtc_01/src/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/rtc_01/src/rtc.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/servo_01/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/servo_01/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/servo_01/inc/servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/servo_01/inc/servo.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/servo_01/src/servo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/servo_01/src/servo.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/spi_01_sdcard_fatfilesystem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/spi_01_sdcard_fatfilesystem/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/spi_01_sdcard_fatfilesystem/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/spi_01_sdcard_fatfilesystem/Readme.md -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/spi_01_sdcard_fatfilesystem/SD SPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/spi_01_sdcard_fatfilesystem/SD SPI.png -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/spi_01_sdcard_fatfilesystem/inc/sd_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/spi_01_sdcard_fatfilesystem/inc/sd_spi.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/spi_01_sdcard_fatfilesystem/src/sd_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/spi_01_sdcard_fatfilesystem/src/sd_spi.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/tick_01_tickHook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/tick_01_tickHook/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/tick_01_tickHook/inc/tickHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/tick_01_tickHook/inc/tickHook.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/tick_01_tickHook/src/tickHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/tick_01_tickHook/src/tickHook.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_01_echo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_01_echo/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_01_echo/inc/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_01_echo/inc/uart.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_01_echo/src/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_01_echo/src/uart.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_02_receive_string_blocking/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_02_receive_string_blocking/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_02_receive_string_blocking/inc/uart_receive_string_blocking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_02_receive_string_blocking/inc/uart_receive_string_blocking.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_02_receive_string_blocking/src/uart_receive_string_blocking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_02_receive_string_blocking/src/uart_receive_string_blocking.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_03_receive_string/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_03_receive_string/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_03_receive_string/inc/uart_receive_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_03_receive_string/inc/uart_receive_string.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_03_receive_string/src/uart_receive_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_03_receive_string/src/uart_receive_string.c -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/4a-esp8266_at_instruction_set_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/4a-esp8266_at_instruction_set_en.pdf -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/ESP8266ATCommandsSet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/ESP8266ATCommandsSet.pdf -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/ESP8266_EDU-CIAA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/ESP8266_EDU-CIAA.png -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/Makefile -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/inc/uartBridge_ESP8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/inc/uartBridge_ESP8266.h -------------------------------------------------------------------------------- /examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/src/uartBridge_ESP8266.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_edu-ciaa-nxp/uart_04_bridge_esp8266/src/uartBridge_ESP8266.c -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeOSEK_01_blinky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeOSEK_01_blinky/Makefile -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeOSEK_01_blinky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeOSEK_01_blinky/README.md -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeOSEK_01_blinky/freeOSEK_01_blinky.oil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeOSEK_01_blinky/freeOSEK_01_blinky.oil -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeOSEK_01_blinky/inc/blinky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeOSEK_01_blinky/inc/blinky.h -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeOSEK_01_blinky/src/blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeOSEK_01_blinky/src/blinky.c -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_01_blinky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_01_blinky/Makefile -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_01_blinky/README.md: -------------------------------------------------------------------------------- 1 | # Blinky con freeRTOS y sAPI. 2 | 3 | -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_01_blinky/inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_01_blinky/inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_01_blinky/inc/newlib_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_01_blinky/inc/newlib_stubs.h -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_01_blinky/src/freeRTOS_01_blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_01_blinky/src/freeRTOS_01_blinky.c -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_01_blinky/src/newlib_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_01_blinky/src/newlib_stubs.c -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/Makefile -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/README.md -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/SD SPI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/SD SPI.png -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/inc/newlib_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/inc/newlib_stubs.h -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/inc/sd_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/inc/sd_spi.h -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/src/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/src/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log.c -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/src/newlib_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_02_ChanFatFS_SPI_SdCard_ADC_log/src/newlib_stubs.c -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/Makefile -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/README.md -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/inc/main.h -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/inc/newlib_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/inc/newlib_stubs.h -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/src/freeRTOS_03_Queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/src/freeRTOS_03_Queue.c -------------------------------------------------------------------------------- /examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/src/newlib_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/examples/sapi_rtos_edu-ciaa-nxp/freeRTOS_03_Queue/src/newlib_stubs.c -------------------------------------------------------------------------------- /libs/sapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/LICENSE -------------------------------------------------------------------------------- /libs/sapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/Makefile -------------------------------------------------------------------------------- /libs/sapi/inc/sapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_7_segment_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_7_segment_display.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_adc.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_board.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_circularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_circularBuffer.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_consolePrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_consolePrint.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_convert.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_dac.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_datatypes.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_debugPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_debugPrint.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_delay.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_gpio.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_hmc5883l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_hmc5883l.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_i2c.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_keypad.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_peripheral_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_peripheral_map.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_print.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_pwm.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_rtc.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_sct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_sct.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_servo.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_sleep.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_spi.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_tick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_tick.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_timer.h -------------------------------------------------------------------------------- /libs/sapi/inc/sapi_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/inc/sapi_uart.h -------------------------------------------------------------------------------- /libs/sapi/src/sapi_7_segment_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_7_segment_display.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_adc.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_board.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_circularBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_circularBuffer.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_convert.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_dac.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_datatypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_datatypes.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_delay.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_gpio.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_hmc5883l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_hmc5883l.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_i2c.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_keypad.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_print.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_pwm.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_rtc.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_sct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_sct.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_servo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_servo.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_sleep.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_spi.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_tick.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_timer.c -------------------------------------------------------------------------------- /libs/sapi/src/sapi_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi/src/sapi_uart.c -------------------------------------------------------------------------------- /libs/sapi_rtos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/LICENSE -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_7_segment_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_7_segment_display.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_adc.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_board.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_circularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_circularBuffer.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_consolePrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_consolePrint.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_convert.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_dac.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_datatypes.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_debugPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_debugPrint.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_gpio.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_hmc5883l.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_hmc5883l.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_i2c.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_keypad.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_peripheral_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_peripheral_map.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_print.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_rtc.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_sleep.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_spi.h -------------------------------------------------------------------------------- /libs/sapi_rtos/inc/sapi_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/inc/sapi_uart.h -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_7_segment_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_7_segment_display.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_adc.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_board.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_circularBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_circularBuffer.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_convert.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_dac.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_datatypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_datatypes.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_gpio.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_hmc5883l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_hmc5883l.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_i2c.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_keypad.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_print.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_rtc.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_sleep.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_spi.c -------------------------------------------------------------------------------- /libs/sapi_rtos/src/sapi_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/libs/sapi_rtos/src/sapi_uart.c -------------------------------------------------------------------------------- /utilities/CIAA-Eclipse-C-Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/utilities/CIAA-Eclipse-C-Profile.xml -------------------------------------------------------------------------------- /utilities/Linux-Tools-Path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epernia/sAPI/HEAD/utilities/Linux-Tools-Path.txt --------------------------------------------------------------------------------