Skip to content

Commit

Permalink
Fix pin assigment to use TUNING_PIN define
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrosvenor committed Aug 7, 2024
1 parent 204779f commit 26d36c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ void loop() {
while (i < 8)
#endif
{
uint16_t temp = pulseIn(PIN_PA5, LOW, (uint32_t) 100000UL);
uint16_t temp = pulseIn(TUNING_PIN, LOW, (uint32_t) 100000UL);
#if defined(ONEKHZMODE)
if (temp < 200 || temp > 1000)
#else
Expand Down

0 comments on commit 26d36c5

Please sign in to comment.