porklib: Simple library for programming Arduino in C
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ondřej Hruška 94bd7b5283 Create README.md il y a 7 ans
examples update docs to indicate that SIPO works also for 595 il y a 9 ans
lib update docs to indicate that SIPO works also for 595 il y a 9 ans
lib_tests source import il y a 9 ans
.gitignore improved a makefile il y a 9 ans
LICENSE Initial commit il y a 9 ans
Makefile.example Improved examples il y a 9 ans
README.md Create README.md il y a 7 ans

README.md

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 as a base instead. Copy and port good modules from this library if you like.


"porklib", MightyPork's Arduino Library

This library aims to make development for AVR in C easy and fun.

Modules of the library provide facilities for pin numbering and aliasing, bitwise operations and accessing internal and external peripherals of the AVR.

It takes some inspiration from Arduino, but is written in pure C, which makes it faster and smaller.

Pull requests to add new modules are welcome, please go ahead!

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).

Adjust the Makefile to your needs!

License

The library is provided under MIT license, see the LICENSE file for more info.