Skip to content

Commit

Permalink
Merge pull request #78 from NETponents/75
Browse files Browse the repository at this point in the history
75
  • Loading branch information
ARMmaster17 committed Jul 25, 2015
2 parents 122b6d8 + d076bef commit 6ea89ea
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ install:
- python -c "$(curl -fsSL https://raw.githubusercontent.com/platformio/platformio/master/scripts/get-platformio.py)"
script:
- platformio ci --project-conf ./platformio.ini
- cd ./bootloader
- cd ./boot
# Install ParseBasic interpreter version 0.1.0
- python -c "$(curl -fsSL https://raw.githubusercontent.com/NETponents/ParseBasic/v0.1.1/pb.py)" ./bootloader.pba
- python -c "$(curl -fsSL https://raw.githubusercontent.com/NETponents/ParseBasic/v0.1.1/pb.py)" ./boot.pba
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Open up the **~/src** folder. Inside, you should find several code files. Go ahe

=====

Once that is done, we can install Octoduino to the SD card. Go ahead an plug it into your computer. Make sure that the card is empty. Format the card to FAT32. Now copy everything ***IN*** the folder **~/bootloader** from the Octoduino source to the SD card.
Once that is done, we can install Octoduino to the SD card. Go ahead an plug it into your computer. Make sure that the card is empty. Format the card to FAT32. Now copy everything ***IN*** the folder **~/boot** from the Octoduino source to the SD card.

The last part is to copy over your own code files. Right now, the only language supported is ParseBasic. This is basically the "Assembly" language of Octoduino. In the future, we'll add more languages as we develop Octoduino. See the documentation on how to create your own ParseBasic file.

Expand Down
2 changes: 1 addition & 1 deletion bootloader/bootloader.pba → boot/boot.pba
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PRINT "====================================";
NEWPRINT;
PRINT "Initializing SWAP";
NEWPRINT;
EXTLOAD /boot/swapinit.pba;
EXTLOAD /pblib/swapinit.pba;
PRINT "PBVM is ready";
NEWPRINT;
PRINT "Attempting to load /run.pba";
Expand Down
2 changes: 1 addition & 1 deletion bootloader/boot/swapinit.pba → boot/pblib/swapinit.pba
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CREATESWAP;
NEW $testvar Hello World;
SET $testvar Hello2;
DELETE $testvar;
DELETE $testvar;

0 comments on commit 6ea89ea

Please sign in to comment.