Skip to content

Commit

Permalink
delete some unneeded temp notes
Browse files Browse the repository at this point in the history
  • Loading branch information
celerizer authored Oct 21, 2024
1 parent 641d282 commit 913e94a
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions devices/eeprom.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,6 @@ void h8_eeprom_free(h8_device_t *device)
h8_dma_free(((h8_eeprom_t*)device->device)->data);
}

/**
* Notes:
* ntr-032 sends cmd 05, then reads 16 bytes from 0x2470 on boot. address is
* incremented by sending a 0xff d/c byte
* 05 FF
* 03 24 70 FF FF FF FF ...
*/

void h8_eeprom_read(h8_device_t *device, h8_byte_t *dst)
{
h8_eeprom_t *eeprom = (h8_eeprom_t*)device->device;
Expand All @@ -167,13 +159,6 @@ void h8_eeprom_read(h8_device_t *device, h8_byte_t *dst)
dst->u = 0;
}

/**
* NTR-027
* 06 02 1B 88 00 05 r FF r ...
* A7
* It repeats this 8 times then starts watching A/D converter?
*/

void h8_eeprom_write(h8_device_t *device, h8_byte_t *dst, const h8_byte_t value)
{
h8_eeprom_t *eeprom = (h8_eeprom_t*)device->device;
Expand Down

0 comments on commit 913e94a

Please sign in to comment.