-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathProgram.cs
95 lines (76 loc) · 3.58 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
//
// Copyright (c) .NET Foundation and Contributors
// See LICENSE file in the project root for full license information.
//
using System;
using System.Diagnostics;
using System.Threading;
using System.Device.Gpio;
using TIPower = nanoFramework.Hardware.TI.Power;
namespace Hardware.TI.PowerMode
{
public class Program
{
public static void Main()
{
// TI CC13x2 Launchpad: DIO_07 it's the green LED
GpioPin led = new GpioController().OpenPin(7, PinMode.Output);
led.Write(PinValue.High);
// query target about wake-up reason
switch (nanoFramework.Hardware.TI.Power.SourceOfReset)
{
case TIPower.ResetSource.ResetPin:
Debug.WriteLine("[INFO] Boot following reset pin hit.");
break;
case TIPower.ResetSource.WarmReset:
Debug.WriteLine("[INFO] Boot following warm reset.");
break;
case TIPower.ResetSource.SoftwareReset:
Debug.WriteLine("[INFO] Boot following software reset.");
break;
case TIPower.ResetSource.WakeupFromShutdown:
Debug.WriteLine("[INFO] Boot following wake-up from shutdown.");
break;
case TIPower.ResetSource.PowerOn:
Debug.WriteLine("[INFO] Boot following regular power on.");
break;
}
//////////////////////////////////////////////////////////////////////////////////////////////
// shutdown: lowest power mode, CPU completely stopped, wake-up on hard reset or GPIO event //
//////////////////////////////////////////////////////////////////////////////////////////////
// enable wake-up from BTN1 GPIO pin (DIO15)
// need to enable internal pull-up
// sensitive to transition to negative
TIPower.ConfigureWakeupFromGpioPin(
new TIPower.PinWakeupConfig[] {
new TIPower.PinWakeupConfig(
15,
TIPower.PinWakeupEdge.NegativeEdge,
TIPower.PinPullUpDown.PullUp)
});
// start a thread blinking the LED to check that something is happening
new Thread( () => {
while (true)
{
Thread.Sleep(125);
led.Toggle();
}
}).Start();
// sleep here for 5 seconds to allow the LED to blink after wakeup
Thread.Sleep(5000);
Debug.WriteLine($"Going to shutdown mode now...");
TIPower.EnterStandbyMode(TimeSpan.FromSeconds(5));
// this call never returns
// after this the target will enter "TI shutdown" mode and will be waked by a push on the BTN1 switch
TIPower.EnterShutdownMode();
/////////////////////////////////////////////////////////////////////////////////////////
// standby: second lowest power mode, CPU stopped depending on power management policy, //
// wake-up after specified time lapsed //
/////////////////////////////////////////////////////////////////////////////////////////
Debug.WriteLine($"Going to standby mode now...");
// going to standby mode and wake up in 10 seconds
TIPower.EnterStandbyMode(TimeSpan.FromSeconds(10));
Thread.Sleep(Timeout.Infinite);
}
}
}