I use the MOD54415 and test the RTC onboard. On myPost function from my WebHandler I extract the data like this: (sorry my variable is in french)
...
else if(httpstricmp( rxBuffer, "POST /FORMDATETIME" ))
{
char AnneeInput[5];
char MoisInput[3];
char JourInput[3];
char HeureInput[3];
char ...
Search found 5 matches
- Thu Oct 17, 2013 6:50 pm
- Forum: NetBurner Software
- Topic: MCF541X_RTCSetTime( struct tm &bts ) problem
- Replies: 1
- Views: 2281
- Tue Oct 08, 2013 6:05 pm
- Forum: NetBurner Software
- Topic: MOD54515 - not able to upload a program file
- Replies: 3
- Views: 4307
Re: MOD54515 - not able to upload a program file
Return of the MOD54415tod wrote:You'll need to use the serial port (using the USB connection is fine). This pdf document from the Wiki FAQ has very detailed instructions.
Thank you Tod
- Mon Oct 07, 2013 8:11 pm
- Forum: NetBurner Software
- Topic: MOD54515 - not able to upload a program file
- Replies: 3
- Views: 4307
MOD54515 - not able to upload a program file
Hi,
I have create a mistake in my program. I create a class Controller. In this class, i have create a method Initialize and run like this:
void DoorController::Initialize()
{
InitializeStack();
if (EthernetIP == 0) GetDHCPAddress();
OSChangePrio(MAIN_PRIO);
EnableAutoUpdate();
StartHTTP ...
I have create a mistake in my program. I create a class Controller. In this class, i have create a method Initialize and run like this:
void DoorController::Initialize()
{
InitializeStack();
if (EthernetIP == 0) GetDHCPAddress();
OSChangePrio(MAIN_PRIO);
EnableAutoUpdate();
StartHTTP ...
- Wed Sep 11, 2013 9:29 am
- Forum: NetBurner Software
- Topic: Using class in CPP compiler
- Replies: 3
- Views: 4906
Re: Using class in CPP compiler
Thank you for your assistance. The namespace in header file was correct but with the copy-paste method, the end bracket was not present in the post. But the call to create an object was not write properly.
Thank you
Thank you
- Tue Sep 10, 2013 6:29 pm
- Forum: NetBurner Software
- Topic: Using class in CPP compiler
- Replies: 3
- Views: 4906
Using class in CPP compiler
Hi
I'm new user with the Netburner Platform. I try to create a class and use the new operator to create my object. The code for the class is:
#ifndef CRTC_H_
#define CRTC_H_
namespace SAN {
class cRTC {
public:
cRTC();
virtual ~cRTC();
};
The main program use the class:
#include ...
I'm new user with the Netburner Platform. I try to create a class and use the new operator to create my object. The code for the class is:
#ifndef CRTC_H_
#define CRTC_H_
namespace SAN {
class cRTC {
public:
cRTC();
virtual ~cRTC();
};
The main program use the class:
#include ...