Skip to content

Commit

Permalink
cleaned up enum
Browse files Browse the repository at this point in the history
  • Loading branch information
ctacke committed Jan 1, 2025
1 parent 285bc82 commit 373c047
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Source/implementations/f7/Meadow.F7/Interop/Interop.freq.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ public enum AnalyzerCallStatus
NoActiveChannels = (-27),
FrequencyInputNotDetected = (-28),
// unconfigure results
UnconfigureSUCCESSFUL = (30),
UnconfigureINVALID_TIMER_NUMB = (-31),
UnconfigureINVALID_CHANNEL_NUMB = (-32),
UnconfigureTIMER_ACCESS_NULL = (-33),
UnconfigureCHAN_NOT_CONFIG = (-34),
UnconfigureNO_CHANNEL = (-35),
UnconfigureIRQ_DETACH_ERR = (-36),
UnconfigureSuccess = (30),
UnconfigureInvalidTimer = (-31),
UnconfigureInvalidChannel = (-32),
UnconfigureTimerAccessNull = (-33),
UnconfigureChannelNotConfigured = (-34),
UnconfigureNoChannel = (-35),
UnconfigureInterruptDetachError = (-36),
}

/*
Expand Down

0 comments on commit 373c047

Please sign in to comment.