diff options
author | axtloss <axtlos@getcryst.al> | 2024-02-17 19:07:53 +0100 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-02-17 19:14:02 +0100 |
commit | 63d3b78538e2e40bd199ee771bcdf9413e542319 (patch) | |
tree | 2381993e25d50aa2f40f478babf52ed4e30c4088 /fsverify-paper.md | |
parent | f57eeabfad55a691ec62e2bda98d4f467d3729b3 (diff) | |
download | fsverify-63d3b78538e2e40bd199ee771bcdf9413e542319.tar.gz fsverify-63d3b78538e2e40bd199ee771bcdf9413e542319.tar.bz2 |
Multithread fsverify
Diffstat (limited to '')
-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() {} |