Search the Community
Showing results for tags 'EthernetTiva C'.
-
Running windows 10 and a TM4C1294 launchpad ethernet server with a tplink router inbetween the pc and the launchpad. When I try to test this with using putty telenet at 192.168.180.164 port 80 without typing anything, I get garbage characters like this : inByte: ÿ inByte: ÿ inByte: ÿ inByte: ÿ inByte: ÿ inByte: ÿ inByte: ÿ inByte: ÿ inByte: ÿ inByte: ÿ inByte: ÿ inByte: ÿ inByte: ÿ inByte: ÿ Why is this occurring? I can stop it by screening for ascii characters with : if((inByte > 47) and (inByte < 123). #include <Energia.h> #in
-
- ethernetserver
- ethernettiva c
-
(and 2 more)
Tagged with:
-
Hi, I am using Energia ethernet library for Ti Tiva c 129 Launchpad. I wrote a simple program in Energia that gets a byte from stream and sends back two bytes. It seems there is lag when I send bytes back from Ti board. Here is my code. byte mac[] = {0x00, 0x0A, 0xB7, 0x52, 0xBA, 0x16 }; IPAddress ip(192,168,1,192); IPAddress gateway(192,168,1,1); IPAddress subnet(255,255,255,0); EthernetServer server(80); EthernetClient client; void setup() { Ethernet.begin(mac, ip, gateway, subnet); server.begin(); Serial.begin(9600); } void loop() { byte buf[2]
- 3 replies
-
- EthernetTiva C
-
(and 2 more)
Tagged with: