|
Reference Guide
enumeration LocationType
Indicates the location in the hybrid where a controller operation (read, write, or burn) should take place. Locations currently only have meaning for PARAGON hybrids; all of the locations have the same effect with analog hybrids.
Definition
- typedef enum LocationConstants {
-
-
- fRAM,
-
- fROM,
-
- fRegisters,
-
- fROMandRegisters
- } LocationType;
-
Descriptions
| fRAM |
Not currently used. fRAM has been included as a placeholder for future use.
|
| fROM |
The operation targets EEPROM (non-volatile memory). Changes take effect the next time the configuration is loaded from EEPROM, on reboot of the hybrid or memory switch.
|
| fRegisters |
The operation targets registers (volatile memory). Changes take effect immediately, but are lost on reboot of the hybrid or memory switch.
|
| fROMandRegisters |
| The operation targets both ROM and registers. Changes take effect immediately, and also also permanently stored in the target memory. |
|