Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update wakeup pins #188

Merged
merged 1 commit into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions nanoFramework.Hardware.Esp32.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
nanoFramework.Hardware.Esp32.DELIVERABLES.nuspec = nanoFramework.Hardware.Esp32.DELIVERABLES.nuspec
nanoFramework.Hardware.Esp32.nuspec = nanoFramework.Hardware.Esp32.nuspec
NuGet.Config = NuGet.Config
README.md = README.md
version.json = version.json
EndProjectSection
EndProject
Expand Down
114 changes: 114 additions & 0 deletions nanoFramework.Hardware.Esp32/Sleep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ public enum WakeupCause

/// <summary>
/// Gpio pins that can be used for wakeup.
///
/// ESP32: 0, 2, 4, 12-15, 25-27, 32-39
/// ESP32-S2: 0-21
/// ESP32-S3: 0-21
/// ESP32-C6: 0-7
/// ESP32-H2: 7-14
/// </summary>
[Flags]
public enum WakeupGpioPin : UInt64
Expand All @@ -88,91 +94,199 @@ public enum WakeupGpioPin : UInt64

/// <summary>
/// Gpio Pin 1 used for wakeup.
/// ESP32, ESP32_S2, ESP32_S3, ESP32-C6 only
/// </summary>
Pin0 = 1,

/// <summary>
/// Gpio Pin 2 used for wakeup.
/// ESP32_S2, ESP32_S3, ESP32-C6 only
/// </summary>
Pin1 = (UInt64)1 << 1,

/// <summary>
/// Gpio Pin 2 used for wakeup.
/// ESP32, ESP32_S2, ESP32_S3, ESP32-C6 only
/// </summary>
Pin2 = (UInt64)1 << 2,

/// <summary>
/// Gpio Pin 3 used for wakeup.
/// ESP32_S2, ESP32_S3, ESP32-C6 only
/// </summary>
Pin3 = (UInt64)1 << 3,

/// <summary>
/// Gpio Pin 4 used for wakeup.
/// ESP32, ESP32_S2, ESP32_S3, ESP32-C6 only
/// </summary>
Pin4 = (UInt64)1 << 4,

/// <summary>
/// Gpio Pin 5 used for wakeup.
/// ESP32_S2, ESP32_S3, ESP32-C6 only
/// </summary>
Pin5 = (UInt64)1 << 5,

/// <summary>
/// Gpio Pin 6 used for wakeup.
/// ESP32_S2, ESP32_S3, ESP32-C6 only
/// </summary>
Pin6 = (UInt64)1 << 6,

/// <summary>
/// Gpio Pin 7 used for wakeup.
/// ESP32_S2, ESP32_S3, ESP32-C6, ESP32_H2 only
/// </summary>
Pin7 = (UInt64)1 << 7,

/// <summary>
/// Gpio Pin 8 used for wakeup.
/// ESP32_S2, ESP32_S3, ESP32_H2 only
/// </summary>
Pin8 = (UInt64)1 << 8,

/// <summary>
/// Gpio Pin 9 used for wakeup.
/// ESP32_S2, ESP32_S3, ESP32_H2 only
/// </summary>
Pin9 = (UInt64)1 << 9,

/// <summary>
/// Gpio Pin 10 used for wakeup.
/// ESP32_S2, ESP32_S3, ESP32_H2 only
/// </summary>
Pin10 = (UInt64)1 << 10,

/// <summary>
/// Gpio Pin 11 used for wakeup.
/// ESP32_S2, ESP32_S3, ESP32_H2 only
/// </summary>
Pin11 = (UInt64)1 << 11,

/// <summary>
/// Gpio Pin 12 used for wakeup.
/// ESP32, ESP32_S2, ESP32_S3, ESP32_H2 only
/// </summary>
Pin12 = (UInt64)1 << 12,

/// <summary>
/// Gpio Pin 13 used for wakeup.
/// ESP32, ESP32_S2, ESP32_S3, ESP32_H2 only
/// </summary>
Pin13 = (UInt64)1 << 13,

/// <summary>
/// Gpio Pin 14 used for wakeup.
/// ESP32, ESP32_S2, ESP32_S3, ESP32_H2 only
/// </summary>
Pin14 = (UInt64)1 << 14,

/// <summary>
/// Gpio Pin 15 used for wakeup.
/// ESP32, ESP32_S2, ESP32_S3 only
/// </summary>
Pin15 = (UInt64)1 << 15,

/// <summary>
/// Gpio Pin 16 used for wakeup.
/// ESP32_S2, ESP32_S3 only
/// </summary>
Pin16 = (UInt64)1 << 16,

/// <summary>
/// Gpio Pin 17 used for wakeup.
/// ESP32_S2, ESP32_S3 only
/// </summary>
Pin17 = (UInt64)1 << 17,

/// <summary>
/// Gpio Pin 18 used for wakeup.
/// ESP32_S2, ESP32_S3 only
/// </summary>
Pin18 = (UInt64)1 << 18,

/// <summary>
/// Gpio Pin 19 used for wakeup.
/// ESP32_S2, ESP32_S3 only
/// </summary>
Pin19 = (UInt64)1 << 19,

/// <summary>
/// Gpio Pin 20 used for wakeup.
/// ESP32_S2, ESP32_S3 only
/// </summary>
Pin20 = (UInt64)1 << 20,

/// <summary>
/// Gpio Pin 21 used for wakeup.
/// ESP32_S2, ESP32_S3 only
/// </summary>
Pin21 = (UInt64)1 << 21,

/// <summary>
/// Gpio Pin 25 used for wakeup.
/// ESP32 only
/// </summary>
Pin25 = (UInt64)1 << 25,

/// <summary>
/// Gpio Pin 26 used for wakeup.
/// ESP32 only
/// </summary>
Pin26 = (UInt64)1 << 26,

/// <summary>
/// Gpio Pin 27 used for wakeup.
/// ESP32 only
/// </summary>
Pin27 = (UInt64)1 << 27,

/// <summary>
/// Gpio Pin 32 used for wakeup.
/// ESP32 only
/// </summary>
Pin32 = (UInt64)1 << 32,

/// <summary>
/// Gpio Pin 33 used for wakeup.
/// ESP32 only
/// </summary>
Pin33 = (UInt64)1 << 33,

/// <summary>
/// Gpio Pin 34 used for wakeup.
/// ESP32 only
/// </summary>
Pin34 = (UInt64)1 << 34,

/// <summary>
/// Gpio Pin 35 used for wakeup.
/// ESP32 only
/// </summary>
Pin35 = (UInt64)1 << 35,

/// <summary>
/// Gpio Pin 36 used for wakeup.
/// ESP32 only
/// </summary>
Pin36 = (UInt64)1 << 36,

/// <summary>
/// Gpio Pin 37 used for wakeup.
/// ESP32 only
/// </summary>
Pin37 = (UInt64)1 << 37,

/// <summary>
/// Gpio Pin 38 used for wakeup.
/// ESP32 only
/// </summary>
Pin38 = (UInt64)1 << 38,

/// <summary>
/// Gpio Pin 39 used for wakeup.
/// ESP32 only
/// </summary>
Pin39 = (UInt64)1 << 39
}
Expand Down