mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-08-29 19:09:05 +00:00
Free up some fw space (#2844)
This commit is contained in:
@@ -339,7 +339,7 @@ void SubGhzDRecentEntryDetailView::parseProtocol() {
|
||||
if (entry_.sensorType == FPS_CAMEATOMO) {
|
||||
entry_.data ^= 0xFFFFFFFFFFFFFFFF;
|
||||
entry_.data <<= 4;
|
||||
uint8_t pack[8] = {};
|
||||
uint8_t pack[8];
|
||||
pack[0] = (entry_.data >> 56);
|
||||
pack[1] = ((entry_.data >> 48) & 0xFF);
|
||||
pack[2] = ((entry_.data >> 40) & 0xFF);
|
||||
|
||||
Reference in New Issue
Block a user