The various wireless mode commands are POST commands. I don't know the convention for escapes (like for end-of-line) other than "%". Anyone have a link for the standard?
The various wireless mode commands are POST commands. I don't know the convention for escapes (like for end-of-line) other than "%". Anyone have a link for the standard?
How does the POST know where the end of the data comes? I didn't see a byte count, so there's a delimiter which needs escaping if it occurs in the data. Then the escape needs an escape ...
By the way, be aware that you can't load a Propeller binary that is more than about 2K bytes. This is usually used to load a second-stage loader. That's the way proploader works.
You can load a full 32k Propeller binary with load-file but you have to write it to the flash filesystem first. However, it's very slow since you're using the Propeller's ROM loader. The second-stage loader used by proploader is a lot faster.
Comments