Merge branch 'UNLEASHED' into 420

This commit is contained in:
RogueMaster
2022-11-27 01:44:26 -05:00
5 changed files with 20 additions and 32 deletions

View File

@@ -1,30 +1,10 @@
### New changes ### New changes
* Plugins: SubGHz Bruteforcer -> Add support for Ansonic 12bit protocol (FM238) * SubGHz: Fix counter can go higher than 16bits in protocols - Keeloq, SL, Came Atomo, Nice Flor S
* Plugins: Fix DTMF Dolphin -> Add forgotten scene and menu item * SubGHz -> Plugin: WS - Add protocol Auriol HG0601A (by @LY2NEO) [(Details)](https://github.com/DarkFlippers/unleashed-firmware/issues/184)
* Plugins: Update DTMF Dolphin [(by litui)](https://github.com/litui/dtmf_dolphin) * NFC -> PR: Assets - mf classic dict update - Possible keys for Omsk transport cards (by @vadrozh | PR #181)
* Plugins: Update TOTP [(by akopachov)](https://github.com/akopachov/flipper-zero_authenticator) * BadUSB -> PR: Keyboard layouts: Slovenian (si) / Croatian (hr), Bosnian (ba) (Latin, Bosnia and Herzegovina) (by @StellarStoic | PR #187)
* Plugins: iButton Fuzzer and RFID Fuzzer improvements * Plugins: Update Temperature Sensor Plugin - HTU2xD, SHT2x, SI702x, SI700x, SI701x, AM2320 [(by Mywk)](https://github.com/Mywk/FlipperTemperatureSensor)
* Plugins: i2c tools fix name display * Plugins: Update HEX Viewer [(by QtRoS)](https://github.com/QtRoS/flipper-zero-hex-viewer)
* Plugins: Add 3 new plugins BlackJack, Solitaire [(by teeebor)](https://github.com/teeebor/flipper_games) and HEX Viewer [(by QtRoS)](https://github.com/QtRoS/flipperzero-firmware)
* Plugins -> PR: Wifi marauder BT menus option (by @rf-bandit | PR #164)
* Plugins -> PR: Update i2c tools (New UI) (by @NaejEL | PR #171)
* Plugins -> PR: Fix htu21d falsely reading temp as humidity (by @GottZ | PR #175)
* SubGHz -> PR: GUI Fix - Allow setting RSSI trigger to beggining (by @TQMatvey | PR #180)
* SubGHz: Remove not widely used frequency from hopper
* SubGHz: Fix starline encoder
* SubGHz: Frequency Analyzer -> Save last trigger level
* SubGHz: Speedup subghz launch from favourites
* SubGHz: Add new freqs and modulation to user config
* Infrared: Update universal remote assets (by @Amec0e)
* CI/CD: Improvements, dev builds (can be found in this telegram channel -> https://t.me/kotnehleb)
* Power -> PR: Show battery percentile while charging (by @TQMatvey | PR #178)
* Docs -> PR: Some updates (by @lucemans | PR #169 and #170)
* CLI -> PR: Update cli_commands.c To add `src` / `source` command for people exploring cli (by @PharoahCoder | PR #176)
* OFW: Fix U2F HID vulnerability
* OFW: Core: thread allocation shortcut
* OFW: WS: add protocol GT-WT02
* OFW: SubGhz: add protocol "Ansonic"
* OFW: SubGhz: add protocol Nice_Flo 20bit
#### [🎲 Download latest extra apps pack](https://download-directory.github.io/?url=https://github.com/xMasterX/unleashed-extra-pack/tree/main/apps) #### [🎲 Download latest extra apps pack](https://download-directory.github.io/?url=https://github.com/xMasterX/unleashed-extra-pack/tree/main/apps)

View File

@@ -15,8 +15,8 @@ Thank you to all the supporters!
## Latest Updates ## Latest Updates
- Known Issues: `Chess` - Known Issues: `Chess`
- Last Synced/Checked [Unleashed/xMasterX](https://github.com/DarkFlippers/unleashed-firmware), changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md): `2022-11-25 01:09 EST` - Last Synced/Checked [Unleashed/xMasterX](https://github.com/DarkFlippers/unleashed-firmware), changes in [changelog](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/CHANGELOG.md): `2022-11-27 01:44 EST`
- Last Synced/Checked [OFW](https://github.com/flipperdevices/flipperzero-firmware), changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2022-11-25 01:09 EST` - Last Synced/Checked [OFW](https://github.com/flipperdevices/flipperzero-firmware), changes in [commits](https://github.com/flipperdevices/flipperzero-firmware/commits/dev): `2022-11-27 01:44 EST`
- Updated: [USB HID Autofire (By pbek)](https://github.com/pbek/usb_hid_autofire) - Updated: [USB HID Autofire (By pbek)](https://github.com/pbek/usb_hid_autofire)
- Added: [(WIP) added ISO15693 reading, saving and revealing from privacy mode (unlock) #1991 (By g3gg0)](https://github.com/flipperdevices/flipperzero-firmware/pull/1991) - Added: [(WIP) added ISO15693 reading, saving and revealing from privacy mode (unlock) #1991 (By g3gg0)](https://github.com/flipperdevices/flipperzero-firmware/pull/1991)
- Updated: [Gui: proper navigation in file browser dialog #2014 (By skotopes)](https://github.com/flipperdevices/flipperzero-firmware/pull/2014) - Updated: [Gui: proper navigation in file browser dialog #2014 (By skotopes)](https://github.com/flipperdevices/flipperzero-firmware/pull/2014)

View File

@@ -1,6 +1,6 @@
App( App(
appid="Temperature_Sensor", appid="HTU_Temperature_Sensor",
name="Temperature Sensor", name="[HTU/+] Temperature Sensor",
apptype=FlipperAppType.EXTERNAL, apptype=FlipperAppType.EXTERNAL,
entry_point="temperature_sensor_app", entry_point="temperature_sensor_app",
cdefines=["APP_TEMPERATURE_SENSOR"], cdefines=["APP_TEMPERATURE_SENSOR"],

View File

@@ -135,7 +135,11 @@ static void
uint8_t pack[8] = {}; uint8_t pack[8] = {};
instance->generic.cnt++; if(instance->generic.cnt < 0xFFFF) {
instance->generic.cnt++;
} else if(instance->generic.cnt >= 0xFFFF) {
instance->generic.cnt = 0;
}
//Send header //Send header
instance->encoder.upload[index++] = instance->encoder.upload[index++] =

View File

@@ -129,7 +129,11 @@ static void subghz_protocol_encoder_nice_flor_s_get_upload(
instance->encoder.size_upload = size_upload; instance->encoder.size_upload = size_upload;
} }
instance->generic.cnt++; if(instance->generic.cnt < 0xFFFF) {
instance->generic.cnt++;
} else if(instance->generic.cnt >= 0xFFFF) {
instance->generic.cnt = 0;
}
uint64_t decrypt = ((uint64_t)instance->generic.serial << 16) | instance->generic.cnt; uint64_t decrypt = ((uint64_t)instance->generic.serial << 16) | instance->generic.cnt;
uint64_t enc_part = subghz_protocol_nice_flor_s_encrypt(decrypt, file_name); uint64_t enc_part = subghz_protocol_nice_flor_s_encrypt(decrypt, file_name);