16
µTasker general / fnParameterPost
« on: October 18, 2011, 08:35:14 PM »
Hi Mark,
Do you have any documentation on how tu use fnParameterPost ?
Regards
Do you have any documentation on how tu use fnParameterPost ?
Regards
Nov 2020: uTasker i.MX RT V1.4.12 is productive - with complete secure loading concept.
Follow uTasker updates at www.twitter.com/uTasker !!
Online Forum registration has now been disabled. Please send an email to an address at the bottom of the home page with your preferred user name and email address if you would like an account.
Return to uTasker main site: www.utasker.com
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Telnet_socket = fnStartTelnet(temp_pars->temp_parameters.usTelnetPort, (2*60), 0, 0, fnTELNETListener); // 2 minute inactivity timeout
#define DEVICE_WITHOUT_USB // LPC23XX doesn't support USB yet
void showDate(void)
{
switch(stPresentTime.ucDayOfWeek)
{
case 1 : fnDebugMsg("Dimanche "); break;
case 2 : fnDebugMsg("Lundi "); break;
case 3 : fnDebugMsg("Mardi "); break;
case 4 : fnDebugMsg("Mercredi "); break;
case 5 : fnDebugMsg("Jeudi "); break;
case 6 : fnDebugMsg("Vendredi "); break;
case 7 : fnDebugMsg("Samedi "); break;
}
fnDebugDec(stPresentTime.ucDayOfMonth,2);
fnDebugMsg("/");
fnDebugDec(stPresentTime.ucMonth,2);
fnDebugMsg("/");
fnDebugDec(stPresentTime.ucYear,2);
fnDebugMsg(" ");
}
Between each call to a fnDebug function the buffer is sent ?