diff options
author | sanni <[email protected]> | 2019-02-08 23:39:20 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-02-08 23:39:20 +0100 |
commit | c02727d6741de7e9eb9f06b69bba1e756f4e8177 (patch) | |
tree | ec8905a9ec6f163089df3cf9877c0f67181cb44b /Cart_Reader/README.md | |
parent | bc9e1106c05f932f27e931a4f1935caf69034a3e (diff) | |
download | cartreader-c02727d6741de7e9eb9f06b69bba1e756f4e8177.tar.gz cartreader-c02727d6741de7e9eb9f06b69bba1e756f4e8177.zip |
Update README.md
Diffstat (limited to 'Cart_Reader/README.md')
-rw-r--r-- | Cart_Reader/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Cart_Reader/README.md b/Cart_Reader/README.md index 8c33446..8f24c41 100644 --- a/Cart_Reader/README.md +++ b/Cart_Reader/README.md @@ -49,7 +49,7 @@ const char N64ContMenuItem3[] PROGMEM = "Write ControllerPak"; const char N64ContMenuItem4[] PROGMEM = "Reset"; const char* const menuOptionsN64Controller[] PROGMEM = {N64ContMenuItem1, N64ContMenuItem2, N64ContMenuItem3, N64ContMenuItem4}; ``` -In an effort to keep the codebase as portable as possible instead of using the functions supplied by the OLED library directly to print out text helper functions like `println_Msg` are being used. So if you want to change to another display library you don't need to change all the code but only the helper functions. +In an effort to keep the codebase as portable as possible instead of using the functions supplied by the OLED library directly to print out text, auxiliary functions like `println_Msg` are being used. So if you want to change to another display library you don't need to change all the code but only the helper functions. ``` void print_Msg(long unsigned int message) { if (enable_OLED) @@ -67,4 +67,4 @@ For development purposes you can route all the text output to the Arduino's Seri #define enable_Serial 1 ``` -To compile and upload the code please have a look at [this wiki article](https://github.com/sanni/cartreader/wiki/How-to-flash-the-Arduino-Code-to-your-Cart-Reader). +To compile and upload the code please have a look at [this wiki article](https://github.com/sanni/cartreader/wiki/How-to-flash-the-Arduino). |