Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aurimasniekis/lpl
Language and Platform independent libraries
https://github.com/aurimasniekis/lpl
Last synced: about 2 months ago
JSON representation
Language and Platform independent libraries
- Host: GitHub
- URL: https://github.com/aurimasniekis/lpl
- Owner: aurimasniekis
- License: mit
- Created: 2013-08-15T07:49:44.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-15T07:56:18.000Z (over 11 years ago)
- Last Synced: 2023-03-22T05:16:33.533Z (almost 2 years ago)
- Size: 109 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#LPL
Language and Platform independent libraries
##Key features:
* Platform independent
* Language Independent
* General function language
* Translation of code module to any platform or language defined
* Use one language syntax for e.g. Ruby##Eg:
```ruby
use SPI
SPI.Write(0xFF1020);
```
##Translates to:
```C
Chip_SPI_Write(SPI1, 0xFF);
Chip_SPI_Write(SPI1, 0x10);
Chip_SPI_Write(SPI1, 0x20);
```
##Or
```C
SPI.begin();
SPI.transfer(0xFF);
SPI.transfer(0x10);
SPI.transfer(0x20);
```