Skip to content

Commit

Permalink
Merge pull request #1134 from mgrosvenor/fix-tuning-pin-define
Browse files Browse the repository at this point in the history
Fix pin assignment to use TUNING_PIN define
  • Loading branch information
SpenceKonde authored Sep 5, 2024
2 parents 5ed96d9 + 26d36c5 commit 0599bf1
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 0599bf1

Please sign in to comment.