mirror of
https://github.com/OneOfEleven/uv-k5-firmware-custom.git
synced 2025-06-19 14:48:03 +03:00
Temporary remove dev container
This commit is contained in:
@ -1,42 +0,0 @@
|
|||||||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
||||||
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
|
|
||||||
{
|
|
||||||
"name": "Archlinux Dockerfile",
|
|
||||||
"build": {
|
|
||||||
// Sets the run context to one level up instead of the .devcontainer folder.
|
|
||||||
"context": "..",
|
|
||||||
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
|
|
||||||
"dockerfile": "../Dockerfile"
|
|
||||||
},
|
|
||||||
"customizations": {
|
|
||||||
"vscode": {
|
|
||||||
"settings": {
|
|
||||||
"terminal.integrated.scrollback": 10000,
|
|
||||||
"git.allowForcePush": true,
|
|
||||||
"editor.minimap.enabled": false
|
|
||||||
}/*,
|
|
||||||
// Here are a few extensions suggestions for more serious development in this Codespace
|
|
||||||
"extensions": [
|
|
||||||
"eamodio.gitlens",
|
|
||||||
"ms-vscode.makefile-tools",
|
|
||||||
"ms-vscode.cpptools",
|
|
||||||
"ms-vscode.cpptools-themes"
|
|
||||||
]*/
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
||||||
// "features": {},
|
|
||||||
|
|
||||||
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
||||||
// "forwardPorts": [],
|
|
||||||
|
|
||||||
// Uncomment the next line to run commands after the container is created.
|
|
||||||
// "postCreateCommand": "cat /etc/os-release",
|
|
||||||
|
|
||||||
// Configure tool-specific properties.
|
|
||||||
// "customizations": {},
|
|
||||||
|
|
||||||
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
|
|
||||||
// "remoteUser": "devcontainer"
|
|
||||||
}
|
|
4
app/fm.c
4
app/fm.c
@ -576,7 +576,7 @@ static void FM_Key_UP_DOWN(bool key_pressed, bool key_held, int8_t Step)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (g_eeprom.fm_is_channel_mode)
|
if (g_eeprom.fm_is_channel_mode)
|
||||||
{
|
{ // we're in channel mode
|
||||||
const uint8_t Channel = FM_FindNextChannel(g_eeprom.fm_selected_channel + Step, Step);
|
const uint8_t Channel = FM_FindNextChannel(g_eeprom.fm_selected_channel + Step, Step);
|
||||||
if (Channel == 0xFF || g_eeprom.fm_selected_channel == Channel)
|
if (Channel == 0xFF || g_eeprom.fm_selected_channel == Channel)
|
||||||
goto Bail;
|
goto Bail;
|
||||||
@ -585,7 +585,7 @@ static void FM_Key_UP_DOWN(bool key_pressed, bool key_held, int8_t Step)
|
|||||||
g_eeprom.fm_frequency_playing = g_fm_channels[Channel];
|
g_eeprom.fm_frequency_playing = g_fm_channels[Channel];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{ // no, frequency mode
|
||||||
uint16_t Frequency = g_eeprom.fm_selected_frequency + Step;
|
uint16_t Frequency = g_eeprom.fm_selected_frequency + Step;
|
||||||
if (Frequency < g_eeprom.fm_lower_limit)
|
if (Frequency < g_eeprom.fm_lower_limit)
|
||||||
Frequency = g_eeprom.fm_upper_limit;
|
Frequency = g_eeprom.fm_upper_limit;
|
||||||
|
BIN
firmware.bin
Normal file
BIN
firmware.bin
Normal file
Binary file not shown.
BIN
firmware.packed.bin
Normal file
BIN
firmware.packed.bin
Normal file
Binary file not shown.
Reference in New Issue
Block a user