28 lines
769 B
Python
28 lines
769 B
Python
"""
|
|
MB85RC64V External FRAM
|
|
Datasheet: https://www.fujitsu.com/jp/group/fsm/en/documents/products/fram/lineup/MB85RC64V-DS501-00013-7v0-E.pdf
|
|
|
|
+ TPS61322 to step-up voltage to V_min
|
|
"""
|
|
from ScEpTIC.emulator.energy.mcu_peripheral.protocol_models.external_nvm_i2c import I2CExternalNVMProtocol
|
|
from ScEpTIC.emulator.energy.voltage_regulator.TPS61322 import TPS61322
|
|
|
|
|
|
datasheet = {
|
|
'size': '8k',
|
|
'cell_size': 8,
|
|
'address_size': 16,
|
|
'peak_frequency': '1M',
|
|
'measure_voltage': '3.0',
|
|
'min_v': '3.0',
|
|
'max_v': '5.5',
|
|
'standby_current_draw': '5u',
|
|
'operating_current_draw': '90u',
|
|
'protocol': I2CExternalNVMProtocol,
|
|
'nvm_type': 'FRAM',
|
|
'has_regulator': True,
|
|
'regulator_type': TPS61322,
|
|
'regulator_voltage': '3.0'
|
|
}
|
|
|