Skip to content

Commit

Permalink
Fix ID implementation from U0 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
chintal committed Sep 21, 2024
1 parent dbead65 commit a549f38
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/hal_platform/f4xx/id_impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ void id_init(void){
current_value = current_char - 'A';
} else if (current_char >= '0' && current_char <= '9'){
current_value = current_char - '0' + 26;
} else if (current_char == ' ') {
;
} else {
current_value = 0;
die();
Expand Down

0 comments on commit a549f38

Please sign in to comment.