aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add SPI mcu support checkKarel Kočí2015-03-22
|
* Add SPI USI mcu support checkKarel Kočí2015-03-22
|
* Moving mcu grouping to separate headerKarel Kočí2015-03-22
| | | | | mcu.h is from now for mcu groups defines. mcu_def now doing same as mcu.h previous.
* Prepare files for twiKarel Kočí2015-03-22
|
* Prepare for usb_cdcKarel Kočí2015-03-22
|
* Prepare for sconf configurationKarel Kočí2015-03-22
|
* Prepare for nrf24l01pKarel Kočí2015-03-22
|
* Prepare for charLCDKarel Kočí2015-03-22
|
* Prepare for DHT22Karel Kočí2015-03-22
|
* SPI moved from src subfolder and mode changesKarel Kočí2015-03-22
| | | | | | SPI USI should now work. SPI USI is now documented. Removing architecture specific folders in src.
* mcu definitions change and updateKarel Kočí2015-03-22
|
* Add *.o to gitignoreKarel Kočí2015-03-22
| | | | To ignore output obj files.
* README.md add ATtiny4313Karel Kočí2015-03-14
|
* Add required mcu specificationsKarel Kočí2015-03-14
| | | | Added mcu specification for previous commits.
* SPI implemented !NOT TESTED!Karel Kočí2015-03-14
| | | | SPI for spi hardware implemented, but newer tested yet!
* SPI USI implementation !NOT TESTED!Karel Kočí2015-03-14
| | | | SPI on USI implemented. But not tested yet.
* Add makefile and files.mkKarel Kočí2015-03-14
| | | | | Added dummy makefile. Only for cleaning. files.mk is intended for project makefile.
* Remove documentationKarel Kočí2015-03-14
| | | | | Documentation will be hand written. At least until better solution. Problem is with ifdefs.
* GPIO removedKarel Kočí2015-02-08
| | | | | | Considering limitation of this and high limitations is GPIO removed. Maybe it made code more clear, but direct access to registers is more effective if we want to set multiple pins in one set.
* Add GPIO input documentation, global config and gitignoreKarel Kočí2015-02-08
| | | | | Also added gpio_set_not() as simple output negation. Macro definition gpio_set_in is moved up in file to group with gpio_set_out.
* Initial commitKarel Kočí2015-01-29
Only GPIO output implemented. Implementing: Macros gpio_get_mode(SET, PIN) gpio_set_out(SET, PIN) gpio_set_in(SET, PIN) gpio_set_high(SET, PIN) gpio_set_low(SET, PIN) gpio_set_value(SET, PIN, VALUE)