Skip to content

Commit bc8aa8b

Browse files
committed
Fix typo: HELO -> HELLO in firmware and documentation
1 parent 6972954 commit bc8aa8b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ AMSKY01 outputs data via USB CDC serial at 115200 baud in CSV format. All data m
4747
# Git Hash: <hash>
4848
# Git Branch: <branch>
4949
#
50-
$HELO,AMSKY01A,<serial_number>,<fw_version>,<git_hash>,<git_branch>
50+
$HELLO,AMSKY01A,<serial_number>,<fw_version>,<git_hash>,<git_branch>
5151
```
5252

53-
The `$HELO` message contains structured device identification for automated parsing:
53+
The `$HELLO` message contains structured device identification for automated parsing:
5454
- `serial_number` - Unique 16-character hex ID from RP2040 chip (e.g., `E6614103E7452D2F`)
5555

5656
### Data Output (every 2 seconds)

fw/src/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ void setup() {
176176
Serial.println(GIT_BRANCH);
177177
Serial.println("#");
178178

179-
// Send structured HELO message with device identification
180-
// Format: $HELO,<device_name>,<serial_number>,<fw_version>,<git_hash>,<git_branch>
181-
Serial.print("$HELO,");
179+
// Send structured HELLO message with device identification
180+
// Format: $HELLO,<device_name>,<serial_number>,<fw_version>,<git_hash>,<git_branch>
181+
Serial.print("$HELLO,");
182182
Serial.print(DEVICE_NAME);
183183
Serial.print(",");
184184
Serial.print(serial_number);

0 commit comments

Comments
 (0)