Porting PicoTCP WIP

This commit is contained in:
2025-10-29 14:29:06 +01:00
parent 6722f42e68
commit 815c2239fe
464 changed files with 235009 additions and 24 deletions

View File

@ -1,5 +1,6 @@
#include <ulib.h>
#include "block.h"
#include "tcptest.h"
void main(void) {
if (argslen() == 0) {
@ -11,6 +12,8 @@ void main(void) {
if (string_strcmp(cmd, "block") == 0) {
diagdummy_block();
} else if (string_strcmp(cmd, "tcp-test") == 0) {
diagdummy_tcptest();
} else {
uprintf("diagdummy: unknown cmd %s\n", cmd);
}