Skip to content

Commit

Permalink
Merge pull request #461 from udo-munk/dev
Browse files Browse the repository at this point in the history
merge dev
  • Loading branch information
udo-munk authored Sep 27, 2024
2 parents b06cc61 + 50721ff commit b335174
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions picosim/rp2040/simcfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ void config(void)
f_read(&sd_file, &cpu, sizeof(cpu), &br);
f_read(&sd_file, &speed, sizeof(speed), &br);
f_read(&sd_file, &fp_value, sizeof(fp_value), &br);
f_read(&sd_file, &t, sizeof(datetime_t), &br);
f_read(&sd_file, &t, sizeof(t), &br);
f_read(&sd_file, &disks[0], DISKLEN, &br);
f_read(&sd_file, &disks[1], DISKLEN, &br);
f_read(&sd_file, &disks[2], DISKLEN, &br);
Expand Down Expand Up @@ -347,7 +347,7 @@ void config(void)
f_write(&sd_file, &cpu, sizeof(cpu), &br);
f_write(&sd_file, &speed, sizeof(speed), &br);
f_write(&sd_file, &fp_value, sizeof(fp_value), &br);
f_write(&sd_file, &t, sizeof(datetime_t), &br);
f_write(&sd_file, &t, sizeof(t), &br);
f_write(&sd_file, &disks[0], DISKLEN, &br);
f_write(&sd_file, &disks[1], DISKLEN, &br);
f_write(&sd_file, &disks[2], DISKLEN, &br);
Expand Down

0 comments on commit b335174

Please sign in to comment.