Where can I find documentation for Mountaineer 4.3.1 b3?
RTC Alarm setting,
The wakeup-sleep? (Pin or RTCC) (for Deepsleep and Off modes)
USB-Client (HID and VCP)
Where can I find documentation for Mountaineer 4.3.1 b3?
RTC Alarm setting,
The wakeup-sleep? (Pin or RTCC) (for Deepsleep and Off modes)
USB-Client (HID and VCP)
Unfortunately, no detailed examples to these issues.
There are no proprietary APIs for these features, so the MSDN API documentation is the reference.
For RTC, there is an example here:
http://www.mountaineer.org/resources/tidbits/using-the-real-time-clock/
@ Cuno - thank you for the reply.
I know that page. I search the entire site a number of times.
I’m using because they add the remote update feature.
Normally I prefer to GH.
Mountaineer 4.3.1 b3;
For RTC
using System;
using System.Threading;
using Microsoft.SPOT.Hardware;
namespace RtcTest
{
public class Program
{
private static SmartSensor.Hardware.UserLed _led;
private static InterruptPort _key;
public static void Main()
{
_key = new InterruptPort(STM32.Pin.PA4, false, Port.ResistorMode.PullDown, Port.InterruptMode.InterruptEdgeHigh);
_key.OnInterrupt += key_OnInterrupt;
_led = new Hardware.UserLed();
_led.BlinkUserLed();
Thread.Sleep(Timeout.Infinite);
}
static void key_OnInterrupt(uint data1, uint data2, DateTime time)
{
_led.BlinkUserLed(5,50);
int n = 500000;
while (n > 0) n--;
Thread.Sleep(5000);
PowerState.Sleep(SleepLevel.DeepSleep, HardwareEvent.GeneralPurpose);
}
}
}
Thank you @ Justin ,
MCU wakes up from deepsleep mode.
Do you have any sample code about USB client communication?
What are you trying to do?
@ Justin - I’m trying to communicate with the PC. (From the USB line.)
VCP will or HID.
I revised the code in this form but did not.
https://www.ghielectronics.com/community/codeshare/entry/859
Device, you need to install some of the settings to connect to the user computer when necessary. And you need to get inside the device logs.
Easiest way would be to use uart with a ftdi chip
@ Justin -
No extra pin in the project.
I’m using a 10 pin Hirose connector.
I put the USB pins are forced to DFU mode.
You can communicate them to be very nice. If I fail, I need to add the project to the NRF module. It will increase the product cost.
The units of production is very high. The unit cost for the customer is very sensitive.
Normally GHI 'also has a USB client. But I could not run the Mountaineers.
The product has the support remote updates (MFUpdate) Mountaineer. I had to use.
My wish is to add remote updates to your F411 assembly.
Let me think about it some more…
@ Justin - You finished your holiday, do you talk more? ;D
Still on holiday