Search found 5 matches

by montambaultp
Thu Oct 17, 2013 6:50 pm
Forum: NetBurner Software
Topic: MCF541X_RTCSetTime( struct tm &bts ) problem
Replies: 1
Views: 1882

MCF541X_RTCSetTime( struct tm &bts ) problem

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 ...
by montambaultp
Tue Oct 08, 2013 6:05 pm
Forum: NetBurner Software
Topic: MOD54515 - not able to upload a program file
Replies: 3
Views: 3011

Re: MOD54515 - not able to upload a program file

tod 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.
Return of the MOD54415

Thank you Tod
by montambaultp
Mon Oct 07, 2013 8:11 pm
Forum: NetBurner Software
Topic: MOD54515 - not able to upload a program file
Replies: 3
Views: 3011

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(); EnableTa...
by montambaultp
Wed Sep 11, 2013 9:29 am
Forum: NetBurner Software
Topic: Using class in CPP compiler
Replies: 3
Views: 3252

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
by montambaultp
Tue Sep 10, 2013 6:29 pm
Forum: NetBurner Software
Topic: Using class in CPP compiler
Replies: 3
Views: 3252

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 "predef.h"...