Skip to content

Commit

Permalink
fix: fix test errors
Browse files Browse the repository at this point in the history
  • Loading branch information
libdriver committed Nov 27, 2024
1 parent 8543429 commit b03c47b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.0.4 (2024-11-27)

## Bug Fixes

- fix test errors

## 2.0.3 (2024-11-26)

## Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions project/raspberrypi4b/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ ssd1306: 12345abcdEFGH.
```shell
./ssd1306 -e basic-init --addr=0 --interface=iic
ssd1306: ssd1306: init success.
ssd1306: init success.
```

```shell
Expand Down Expand Up @@ -377,7 +377,7 @@ ssd1306: draw rect 0 0 32 32.
```shell
./ssd1306 -e advance-init --addr=0 --interface=iic
ssd1306: ssd1306: init success.
ssd1306: init success.
```

```shell
Expand Down
4 changes: 2 additions & 2 deletions project/raspberrypi4b/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ uint8_t ssd1306(uint8_t argc, char** argv)
}

/* output */
ssd1306_interface_debug_print("ssd1306: ssd1306: init success.\n");
ssd1306_interface_debug_print("ssd1306: init success.\n");

return 0;
}
Expand Down Expand Up @@ -655,7 +655,7 @@ uint8_t ssd1306(uint8_t argc, char** argv)
}

/* output */
ssd1306_interface_debug_print("ssd1306: ssd1306: init success.\n");
ssd1306_interface_debug_print("ssd1306: init success.\n");

return 0;
}
Expand Down
4 changes: 2 additions & 2 deletions project/stm32f407/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ ssd1306: 12345abcdEFGH!@#$<>?{}[];<>.
```shell
ssd1306 -e basic-init --addr=0 --interface=iic
ssd1306: ssd1306: init success.
ssd1306: init success.
```

```shell
Expand Down Expand Up @@ -329,7 +329,7 @@ ssd1306: draw rect 0 0 32 32.
```shell
ssd1306 -e advance-init --addr=0 --interface=iic
ssd1306: ssd1306: init success.
ssd1306: init success.
```

```shell
Expand Down
4 changes: 2 additions & 2 deletions project/stm32f407/usr/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ uint8_t ssd1306(uint8_t argc, char** argv)
}

/* output */
ssd1306_interface_debug_print("ssd1306: ssd1306: init success.\n");
ssd1306_interface_debug_print("ssd1306: init success.\n");

return 0;
}
Expand Down Expand Up @@ -650,7 +650,7 @@ uint8_t ssd1306(uint8_t argc, char** argv)
}

/* output */
ssd1306_interface_debug_print("ssd1306: ssd1306: init success.\n");
ssd1306_interface_debug_print("ssd1306: init success.\n");

return 0;
}
Expand Down

0 comments on commit b03c47b

Please sign in to comment.