summaryrefslogtreecommitdiff
path: root/app/nixie_driver
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2023-03-05 21:51:51 +0300
committerOxore <oxore@protonmail.com>2023-03-05 21:51:51 +0300
commit2f4ef73dbafd14095fcb92cf5afeb598e453084c (patch)
treeafa5011dedafcf52575a0457fef5ddc006d9f01e /app/nixie_driver
parent1e78222d516089462a7c3d1de23604e81851eec2 (diff)
Fix warnings, part2
Diffstat (limited to 'app/nixie_driver')
-rw-r--r--app/nixie_driver/nixie_driver_process.c1
-rw-r--r--app/nixie_driver/nixie_driver_task.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/app/nixie_driver/nixie_driver_process.c b/app/nixie_driver/nixie_driver_process.c
index 219494e..d2c96f4 100644
--- a/app/nixie_driver/nixie_driver_process.c
+++ b/app/nixie_driver/nixie_driver_process.c
@@ -226,6 +226,7 @@ static void SwitchOnTube ( uint8_t tube_nbr )
// ----------------------------------------------------------------------------
static void SwitchOffTube ( uint8_t tube_nbr )
{
+ (void) tube_nbr;
NIX_DRIVER_RESET_ST_PIN;
NIX_DRIVER_RESET_TUB_DP1_PIN;
NIX_DRIVER_RESET_TUB_DP2_PIN;
diff --git a/app/nixie_driver/nixie_driver_task.c b/app/nixie_driver/nixie_driver_task.c
index b968128..4a157ad 100644
--- a/app/nixie_driver/nixie_driver_task.c
+++ b/app/nixie_driver/nixie_driver_task.c
@@ -32,5 +32,6 @@ void ProcessFSM_NixieDriver ( void )
// ----------------------------------------------------------------------------
void NixieDriver_Task ( void *pvParameters )
{
+ (void)pvParameters;
while(1)ProcessFSM_NixieDriver ();
}