9ceb218f80
Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
318 B
C
14 lines
318 B
C
/**
|
|
* @file eeprom_map.h
|
|
* @brief Compatibility shim for legacy includes.
|
|
*
|
|
* EEPROM/FRAM capacity and logical partition macros are now defined in
|
|
* `fm24cl16.h`. Keep this header to avoid breaking old include paths.
|
|
*/
|
|
#ifndef EEPROM_MAP_H
|
|
#define EEPROM_MAP_H
|
|
|
|
#include "fm24cl16.h"
|
|
|
|
#endif /* EEPROM_MAP_H */
|