Search found 9 matches
- Mon Dec 01, 2008 8:36 pm
- Forum: NetBurner Software
- Topic: HTML Variable Question
- Replies: 5
- Views: 5667
Re: HTML Variable Question
I ended up just using either FUNCTIONCALL to get a variable, or the variable call to use it as a function, both of which work fine. But using the VARIABLE to just return a variable does not seem to work... not sure why, but meh don't see the need if you can just do the same thing with FUNCTIONCALL (...
- Tue Nov 18, 2008 1:58 pm
- Forum: NetBurner Software
- Topic: EFFS Functions question
- Replies: 1
- Views: 2979
EFFS Functions question
So I was looking at the example EFFS_BASIC and in the FileSystemUtils it has all the handy File system functions you'd want. My question, however, is when looking at the calls they all seem to be f_xxxx and I can't find any reference or documentation to them, but looking at the EFFS documentation I ...
- Tue Nov 18, 2008 10:50 am
- Forum: NetBurner Software
- Topic: HTML Variable Question
- Replies: 5
- Views: 5667
Re: HTML Variable Question
Yes I have an htmlvar.h file, though its not very clear whats supposed to be in here. What I gathered is that you can do the whole <!--VARIABLE call on known variables, but anything that you make in the program it's best to use the FUNCTIONCALL or the VARIABLE call as a function. This is the only wa...
- Tue Nov 18, 2008 10:46 am
- Forum: NetBurner Hardware
- Topic: Unable to program/update 5234 dev board
- Replies: 3
- Views: 4009
Re: Unable to program/update 5234 dev board
I ended up getting the restore files from tech support, as loading any of the known good .s19 files just wasn't taking.
I'm just curious what I did to cause this to happen, ahh well least it's working now.
I'm just curious what I did to cause this to happen, ahh well least it's working now.
- Wed Nov 12, 2008 4:57 pm
- Forum: NetBurner Software
- Topic: HTML Variable Question
- Replies: 5
- Views: 5667
HTML Variable Question
So trying to make a website that will post variables within my application files to the site. Problem is the documentation isn't all that helpfull, and the example code doesn't even work. I tried compiling the HtmlVariables example and it's having the same problem my project is, a whole lot of int D...
- Mon Nov 10, 2008 2:10 pm
- Forum: NetBurner Hardware
- Topic: Unable to program/update 5234 dev board
- Replies: 3
- Views: 4009
Unable to program/update 5234 dev board
So one of the programs I uploaded had some error in it where I was getting an exception and the program wouldn't start. No big deal I thought, just did a FLA ManufacturExample_APP.s19 to restore the board to some working order, except I'm getting an error at the end if the download: Errors were enco...
- Wed Nov 05, 2008 12:04 pm
- Forum: NetBurner Hardware
- Topic: Using flash to store variables
- Replies: 6
- Views: 6217
Re: Using flash to store variables
What I was thinking was using the 8k user parameters, as my parameters are like 10 bytes or so. The idea say I have a struct of running user parameters I want to save, and default "factory reset" parameters I want to save. Problem is the SaveUserParmeters don't allow you to specify a start...
- Wed Nov 05, 2008 11:14 am
- Forum: NetBurner Hardware
- Topic: Using flash to store variables
- Replies: 6
- Views: 6217
Re: Using flash to store variables
Kinda related, I was looking at the "How to increase User Flash Storage" but I run into a problem when I call the FlashErase, or FlashProgram, the board freezes and I have to reset. I want to store various structs in memory and be able to get to them, optimally if I could just pass a memor...
- Wed Nov 05, 2008 11:08 am
- Forum: NetBurner Software
- Topic: Pick once piece of text out of a string
- Replies: 7
- Views: 6425
Re: Pick once piece of text out of a string
probably a bit late but I found this to be an easy way to parse your string, and if you wanted to throw it in a function to parse the entire string: string parseIt(const char * start,const char * end,string& data) { size_t st, fin; string value; st = data.find(start, 0); if(end == "") ...