Skip to content

Commit

Permalink
do_flick: reduce bands to more sensible ranges
Browse files Browse the repository at this point in the history
per suggestion from Willy-JL, now uses the ranges specified by
cc1101 datasheet
  • Loading branch information
kbembedded committed Jun 6, 2024
1 parent 76c09de commit ed383a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ App(
stack_size=2 * 1024,
fap_category="Sub-Ghz",
# Optional values
fap_version="1.0",
fap_version="1.1",
fap_icon="flick.png", # 10x10 1-bit PNG
fap_description="Frequency Liberation and Interchangeable Country Kit",
fap_author="KBEmbedded",
Expand Down
6 changes: 4 additions & 2 deletions scenes/flick_scene_do_flick.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@
/* TODO: Add some customization options? Power, enabling specific bands rather than all, region name? */
FuriHalRegion region = {
.country_code = "LOL",
.bands_count = 1,
.bands_count = 3,
.bands = {
{ 0, 1000000000, 53, 50 },
{ 300000000, 348000000, 53, 50 },
{ 387000000, 464000000, 53, 50 },
{ 779000000, 928000000, 53, 50 },
{},
},
};
Expand Down

0 comments on commit ed383a5

Please sign in to comment.