Files
Scanning the repository...
Last update 7 years 3 weeks
by Unknown
| Filesteensy-firmwaresrc | |
|---|---|
| .. | |
| eeprom.cpp | |
| eeprom.h |
eeprom.cpp/** * @brief * * @file eeprom.cpp * @author your name * @date 2018-04-14 */ template <typename T> void putEEPROM(int address, const T& value) { const char* c = reinterpret_cast<const char*>(&value); int a = address; for (int i = 0; i < sizeof(T); i++) { } }