Skip to content

Commit a386046

Browse files
committed
Version 1.5 bugfix and Micronucleus info
1 parent abe52bc commit a386046

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

DigiOS.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ static void help()
160160
//-----------------------------------------------
161161
{
162162
horizontaLine();
163-
SerialUSB.println(F("\r\nDigiOS version 1.4 User Commands"));
163+
SerialUSB.println(F("\r\nDigiOS version 1.5 User Commands"));
164164
horizontaLine();
165165
SerialUSB.println(F("\r\nlogin, p[0-2] [on|off], temp, help,\
166166
vcc, clear,\r\nuptime, clock [1-7], ls, reboot, logout,\
@@ -256,7 +256,7 @@ void loop()
256256
if (state < 3)
257257
{
258258
if (state > 1) clearScreen();
259-
SerialUSB.print(F("\r\nDigiOS 1.4 - Digispark mini-OS\r\n\r\nPassword: "));
259+
SerialUSB.print(F("\r\nDigiOS 1.5 - Digispark mini-OS\r\n\r\nPassword: "));
260260
state = 4;
261261
}
262262

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,15 @@ When powering the Digispark via the VIN pin, you can connect to it via USB at an
2121

2222
Sketch was intended to take up as little space as possible – instead of strings I used character arrays, instead of pinMode/digitalWrite registers and bit operations, thanks to which it was possible to push so many functions on such a small device. All three components together occupy almost 100% of Digispark’s memory, but to increase the amount of available space for your own code, it is enough to remove the reference to unnecessary functions (e.g. temp, uptime, vcc). These references are marked in a special code block – after deleting them, more than 30% of the memory will be available (excluding bootloader).
2323

24-
You can log in to Digispark under Windows with Putty (after installing Digistump drivers), to Linux with Minicom application and to Android with Serial USB Terminal. Compilation of DigiOS sketch requires installation of an earlier version of Arduino IDE – 1.8.6 and correct installation of Digispark in IDE.
24+
You can log in to Digispark under Windows with Putty (after installing Digistump drivers), to Linux with Minicom application and to Android with Serial USB Terminal.
25+
26+
Compilation of DigiOS sketch requires installation of an earlier version of Arduino IDE – 1.8.6, correct installation of Digispark in IDE and [latest Micronucleus release][3].
2527

2628
DigiOS is licensed under GNU General Public License v3.0
2729

2830
For more information please visit my website: [https://jm.iq.pl/digios][2]
2931

3032
[1]: https://www.youtube.com/watch?v=Ns_7tm4fF6s
3133
[2]: https://jm.iq.pl/digios/
34+
[3]: https://github.com/micronucleus/micronucleus
3235

0 commit comments

Comments
 (0)