V1.0.9 BETA. Get it here:
http://www.spinpoint.org/cpc/M4FIRM_v109b.zipStarted adding a bit of NET API, for now only TCP/IP functions (client), max. 8 connections. Probably full of bugs
Functions added so far:
C_NETSOCKET equ &4331
C_NETCONNECT equ &4332
C_NETCLOSE equ &4333
C_NETSEND equ &4334
C_NETRECV equ &4335
C_NETHOSTIP equ &4336
Here is a small telnet client demo I was able to make with these:
[youtube]v_E7iINGBFE[/youtube]
Download the sample telnet client source code below.
This is a total hack, with hardcoded IP/port and you cannot use del key.
I have not read any RFC's regarding telnet, so just a quick and dirty implementation (works with my router, maybe not much else).
For anyone wanting to make a proper telnet client, feel free to use this as you wish:
GitHub - M4Duke/telnet: Example telnet client for M4boardI haven't documented the new functions yet, but hopefully the above source will provide enough info for now.