aboutsummaryrefslogtreecommitdiff
path: root/fsverify-paper.md
diff options
context:
space:
mode:
authoraxtloss <axtlos@getcryst.al>2024-02-17 19:07:53 +0100
committeraxtloss <axtlos@getcryst.al>2024-02-17 19:14:02 +0100
commit63d3b78538e2e40bd199ee771bcdf9413e542319 (patch)
tree2381993e25d50aa2f40f478babf52ed4e30c4088 /fsverify-paper.md
parentf57eeabfad55a691ec62e2bda98d4f467d3729b3 (diff)
downloadfsverify-63d3b78538e2e40bd199ee771bcdf9413e542319.tar.gz
fsverify-63d3b78538e2e40bd199ee771bcdf9413e542319.tar.bz2
Multithread fsverify
Diffstat (limited to 'fsverify-paper.md')
-rw-r--r--fsverify-paper.md4
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() {}