Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ameall committed Apr 4, 2024
1 parent 7bdc82d commit ddd9371
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/Src/eepromdirectory.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ bool test_main_EEPROM(){
eeprom_read_data_address(root_address, &data_read, 1);

// Write data previously stored in EEPROM address back to EEPROM
eeprom_write_data_address(root_address, &reg_to_write, 1);
eeprom_write_data_address(root_address, &initial_data, 1);

if (data_read != known_data){
return false;
Expand Down Expand Up @@ -225,7 +225,7 @@ bool test_fault_EEPROM(){
eeprom_read_data_address(curr_Address, &temp_Faults[curr_Iter], 4);
curr_Iter++;

if (temp_faults[curr_Iter] != sample_fault){
if (temp_Faults[curr_Iter] != sample_fault){
break;
}

Expand Down

0 comments on commit ddd9371

Please sign in to comment.