├── .github └── FUNDING.yml ├── Example ├── main_esp32_arduino.cpp └── main_stm32_freertos.c ├── LICENSE.TXT ├── Port ├── ask_hal_avr_arduino.c ├── ask_hal_esp32_arduino.c ├── ask_hal_stm32_freertos.c └── ask_hal_stm32_none.c ├── README.md ├── ask.c ├── ask.h ├── ask_config.h └── ask_hal.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Example/main_esp32_arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/Example/main_esp32_arduino.cpp -------------------------------------------------------------------------------- /Example/main_stm32_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/Example/main_stm32_freertos.c -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /Port/ask_hal_avr_arduino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/Port/ask_hal_avr_arduino.c -------------------------------------------------------------------------------- /Port/ask_hal_esp32_arduino.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/Port/ask_hal_esp32_arduino.c -------------------------------------------------------------------------------- /Port/ask_hal_stm32_freertos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/Port/ask_hal_stm32_freertos.c -------------------------------------------------------------------------------- /Port/ask_hal_stm32_none.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/Port/ask_hal_stm32_none.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/README.md -------------------------------------------------------------------------------- /ask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/ask.c -------------------------------------------------------------------------------- /ask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/ask.h -------------------------------------------------------------------------------- /ask_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/ask_config.h -------------------------------------------------------------------------------- /ask_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nimaltd/ask/HEAD/ask_hal.h --------------------------------------------------------------------------------