mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-18 10:51:54 +03:00
Iterators fix
This commit is contained in:
parent
0521bd4320
commit
e40444b526
@ -334,7 +334,7 @@ static bool subghz_protocol_encoder_alutech_at_4n_get_upload(
|
|||||||
(uint32_t)subghz_protocol_alutech_at_4n_const.te_long * 4;
|
(uint32_t)subghz_protocol_alutech_at_4n_const.te_long * 4;
|
||||||
|
|
||||||
// Send key data
|
// Send key data
|
||||||
for(uint8_t i = 64; i > 0; ++i) {
|
for(uint8_t i = 64; i > 0; --i) {
|
||||||
if(bit_read(instance->generic.data, i - 1)) {
|
if(bit_read(instance->generic.data, i - 1)) {
|
||||||
//1
|
//1
|
||||||
instance->encoder.upload[index++] =
|
instance->encoder.upload[index++] =
|
||||||
@ -350,7 +350,7 @@ static bool subghz_protocol_encoder_alutech_at_4n_get_upload(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Send crc
|
// Send crc
|
||||||
for(uint8_t i = 8; i > 0; ++i) {
|
for(uint8_t i = 8; i > 0; --i) {
|
||||||
if(bit_read(instance->crc, i - 1)) {
|
if(bit_read(instance->crc, i - 1)) {
|
||||||
//1
|
//1
|
||||||
instance->encoder.upload[index++] =
|
instance->encoder.upload[index++] =
|
||||||
|
Loading…
Reference in New Issue
Block a user