Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 1.01 KB

README.md

File metadata and controls

16 lines (12 loc) · 1.01 KB

sam-lib

The C library sam-lib provides an API for controlling the peripherals of the microcontroller. The supported devices include microcontrollers from the Microchip (Atmel) AT91 family, specifically the SAM3N, SAM3S, SAM4N, and SAM4S chips. The supported standard peripherals include SUPC, RSTC, WDT, PMC, EEFC, UART, USART, PIO, TWI, ADC, DACC, SPI, TC, and various hardware components connected to the microcontroller such as buttons, LEDs, LEDUI, IO extenders (shift registers), etc.

Library features

  • Standardized API (for the AZTech framework).
  • Implementation of low-level serial communication protocols.
  • Designed for real-time multitasking applications (dependent on FreeRTOS).
  • Efficient interrupt handling.
  • Use of DMA where appropriate.
  • Communication peripheral instances are represented by C structures with synchronous (blocking) read() and write() I/O operations.
  • Support for low-power microcontroller modes. Peripheral blocks are turned off when entering sleep mode.