propeller1 loader (plus -q option)
https://www.youtube.com/watch?v=SXgN-7A1MXM
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.
|
4 years ago | |
---|---|---|
qmake | 8 years ago | |
.gitignore | 8 years ago | |
LICENSE | 8 years ago | |
Makefile | 6 years ago | |
README.md | 8 years ago | |
eeprom.c | 8 years ago | |
enumcom.c | 8 years ago | |
gpio_sysfs.c | 8 years ago | |
gpio_sysfs.h | 8 years ago | |
osint.h | 8 years ago | |
osint_linux.c | 8 years ago | |
osint_mingw.c | 8 years ago | |
p1load.c | 4 years ago | |
packet.c | 8 years ago | |
packet.h | 8 years ago | |
packet_driver.spin | 8 years ago | |
ploader.c | 8 years ago | |
ploader.h | 8 years ago | |
port.c | 6 years ago | |
port.h | 8 years ago |
README.md
p1load
p1load is a tiny, nimble cross-platform loader library for the Propeller microcontroller.
Building
p1load
can be built in multiple ways.
GNU Make
Building using plain old make
is straight-forward. To build for the various platforms,
specify the target operating system using the OS
variable.
OS=macosx make
Possible options:
- Mac OS X:
OS=macosx
- Linux:
OS=linux
- Raspberry Pi:
OS=raspberrypi
- Windows MinGW:
OS=msys
If no platform is specified, the default macosx
is used.
qmake
qmake
project files can be found in the qmake/
directory.
cd qmake
qmake
make
qmake
will automatically build in platform-specific features except
for Raspberry Pi. Pass CPU=armhf
to qmake
to enable GPIO support for Raspberry Pi.
qmake CPU=armhf