This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include "pico/stdlib.h" | |
#include "pico/binary_info.h" | |
#include "hardware/flash.h" | |
#include "hardware/sync.h" | |
#include <lfs.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ "x$1" = "x" ]; then | |
echo "Arguments: ./build.sh <name of source file without the .s> <library file>" | |
else | |
echo "Starting super awesome compiling script!" | |
# Export the path so the libs exist, located on the bin path | |
export PATH=$PWD/bin:$PATH |