diff options
Diffstat (limited to 'fsverify-paper.md')
-rw-r--r-- | fsverify-paper.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fsverify-paper.md b/fsverify-paper.md index b68728f..1bba029 100644 --- a/fsverify-paper.md +++ b/fsverify-paper.md @@ -119,8 +119,8 @@ An (unsafe) example using an arduino can look like this: // fsverify-serial.ino void setup() { - Serial.setup(9600) // set up a serial tty with the baud rate 9600 - Serial.print("\tpublic key\t") // Write the public key to the tty + Serial.begin(9600); // set up a serial tty with the baud rate 9600 + Serial.print("\tpublic key\t"); // Write the public key to the tty } void loop() {} |