Merge pull request #107 from caldog20/wifimac-configmem

Stub reads for WIFI MAC address in ConfigMem
This commit is contained in:
wheremyfoodat 2023-07-11 23:56:31 +03:00 committed by GitHub
commit e00f5d21df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 11 deletions

View file

@ -11,20 +11,16 @@ namespace ConfigMem {
AppMemAlloc = 0x1FF80040,
HardwareType = 0x1FF81004,
Datetime0 = 0x1FF81020,
WifiMac = 0x1FF81060,
NetworkState = 0x1FF81067,
LedState3D = 0x1FF81084,
BatteryState = 0x1FF81085,
Unknown1086 = 0x1FF81086,
HeadphonesConnectedMaybe = 0x1FF810C0 // TODO: What is actually stored here?
HeadphonesConnectedMaybe = 0x1FF810C0 // TODO: What is actually stored here?
};
// Shows what type of hardware we're running on
namespace HardwareCodes {
enum : u8 {
Product = 1,
Devboard = 2,
Debugger = 3,
Capture = 4
};
enum : u8 { Product = 1, Devboard = 2, Debugger = 3, Capture = 4 };
}
}
} // namespace ConfigMem