/ firmware / src / filesystems / eeprom.h
eeprom.h
 1  #pragma once
 2  #include <at24c32.h>
 3  
 4  namespace filesystems::eeprom {
 5  
 6  extern AT24C32 IC;
 7  
 8  bool initialize();
 9  
10  #ifdef PIO_UNIT_TESTING
11  void test();
12  #endif
13  
14  }
15