Re: Drivers for ESP modules
Posted: 01 Apr 2020 18:07
I verified that it works fine with the Roadshow demo too.
We welcome retro users & hardware gurus alike! Come and join the party :)
https://www.exxosforum.co.uk/forum/
Well the whole idea with these things was they were cheaper than a beer. Thats why i picked themtheq wrote: 01 Apr 2020 18:11 I think I’ve killed my ESP-01S’. Can’t get the first part of the firmware to stick (fault on verify).
Ordered new ones. Hope I get them by this weekend.
Yeah, they are dirt cheap. :)terriblefire wrote: 01 Apr 2020 19:47 Well the whole idea with these things was they were cheaper than a beer. Thats why i picked them
Yes, they need to be programmed and they can run at 115200 in the TF330.matt020 wrote: 02 Apr 2020 04:47 Does the ESP8266 have to be reprogrammed to run at 38400? Can it run at 115000 in the TF330?
No, they won't.matt020 wrote: 02 Apr 2020 04:47 Or will an ESP8266 just work out of the box in the TF330 ... <snipp>... ?
Your install_script worked perfectly.terriblefire wrote: 01 Apr 2020 12:06 Simple AmigaDOS script to set everything up for you. You need to have installed roadshow (maybe also with roadshow demo?) and downloaded http://aminet.net/package/comm/net/cslip-sana2.lha into the same folder as the script... see the zip attached.
Caveat is that it wipes your current settings clean and uses 8.8.8.8 for DNS resolution. You can update that if needed.
literally unzip the zip file and type "Execute install_script" at a cli.Code: Select all
; (C) 2020 Stephen J. Leary ; echo "Removing old slip.device" IF EXISTS DEVS:Networks/slip.device delete DEVS:Networks/slip.device EndIf echo "Installing slip.device" lha -q x cslip-sana2.lha ram: copy QUIET ram:slip/slip.device DEVS:Networks/ IF NOT EXISTS ENVARC:Sana2 echo "Creating SANA2 Config folder" MAKEDIR ENVARC:Sana2 ENDIF echo "Creating slip0.config" echo >envarc:Sana2/slip0.config "# Auto generated file" echo >>envarc:Sana2/slip0.config "serial.device 0 38400 192.168.240.2" echo "Create network interface" echo >devs:NetInterfaces/Slip "# $VER: SLIP 1.1 (1.4.2020)" echo >>Devs:NetInterfaces/Slip "interface=Slip" echo >>devs:NetInterfaces/Slip "device=slip.device" echo >>devs:NetInterfaces/Slip "unit=0" echo >>devs:NetInterfaces/Slip "address=192.168.240.2" echo >>devs:NetInterfaces/Slip "netmask=255.255.255.0" echo >>devs:NetInterfaces/Slip "requiresinitdelay=no" echo "Create routes file" echo >Devs:Internet/Routes default 192.168.240.1 echo "Create name_resolution file" echo >Devs:Internet/name_resolution nameserver 8.8.8.8
Code: Select all
echo >>envarc:Sana2/slip0.config "serial.device 0 38400 192.168.240.2"Code: Select all
echo >>envarc:Sana2/slip0.config "serial.device 0 115200 192.168.240.2"