porklib: Simple library for programming Arduino in C
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
avr-lib/README.md

31 lines
1.1 KiB

8 years ago
**This library is very old and unmaintained.**
There may be some good bits worth salvaging, but for new projects I recommend the [avr-c-boilerplate](https://github.com/MightyPork/avr-c-boilerplate) as a base instead. Copy and port good modules from this library if you like.
---
# "porklib", MightyPork's Arduino Library
10 years ago
This library aims to make development for AVR in C easy and fun.
10 years ago
Modules of the library provide facilities for pin numbering and aliasing,
bitwise operations and accessing internal and external peripherals of the AVR.
10 years ago
It takes some inspiration from Arduino, but is written in pure C, which makes it faster
and smaller.
10 years ago
Pull requests to add new modules are welcome, please go ahead!
10 years ago
## Makefile
You can use the provided Makefile to build your project with this library.
A project typically consists of one `main.c` file, and some `*_config.c` files where the
library headers request it (those define eg. IO pin mapping).
10 years ago
Adjust the Makefile to your needs!
## License
10 years ago
The library is provided under MIT license, see the LICENSE file for more info.