You will not be able to post if you are still using Microsoft email addresses such as Hotmail etc
See here for more information viewtopic.php?f=20&t=7296
BOOKMARK THIS PAGE !
https://www.exxosforum.co.uk:8085/IP_CHECK/
You can unban yourself if needed. It also sends me reports to investigate the ban.
DO NOT USE MOBILE / CGNAT DEVICES WHERE THE IP CHANGES CONSTANTLY!
At this time, it is unfortunately not possible to whitelist users when your IP changes constantly.
You may inadvertently get banned because a previous attack may have used the IP you are now on.
So I suggest people only use fixed IP address devices until I can think of a solution for this problem!

Getting WFI Working on TF3xx with ESP Module

Help & news on accelerators from TF, Amiga, Atari, CD32 etc

Moderators: terriblefire, Terriblefire Moderator

terriblefire
Admin sponsor
Admin sponsor
Posts: 5681
Joined: 28 Aug 2017 22:56
Location: Glasgow, UK

Re: Drivers for ESP modules

Post by terriblefire »

I verified that it works fine with the Roadshow demo too.
———
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."
theq
Posts: 114
Joined: 18 Dec 2018 19:16
Location: North of the Wall

Re: Drivers for ESP modules

Post by theq »

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.

My ESP32 is working great, though.
terriblefire
Admin sponsor
Admin sponsor
Posts: 5681
Joined: 28 Aug 2017 22:56
Location: Glasgow, UK

Re: Drivers for ESP modules

Post by terriblefire »

theq 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.
Well the whole idea with these things was they were cheaper than a beer. Thats why i picked them
———
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."
theq
Posts: 114
Joined: 18 Dec 2018 19:16
Location: North of the Wall

Re: Drivers for ESP modules

Post by theq »

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
Yeah, they are dirt cheap. :)

Think I’ve killed them. «Might« have connected them to 5V... Able to communicate with them, so will see when I get some replacements.
terriblefire
Admin sponsor
Admin sponsor
Posts: 5681
Joined: 28 Aug 2017 22:56
Location: Glasgow, UK

Re: Drivers for ESP modules

Post by terriblefire »

Sounds more like a gubbed programmer.
———
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."
matt020
Posts: 323
Joined: 29 Sep 2019 09:17
Location: West Australia

Re: Drivers for ESP modules

Post by matt020 »

Does the ESP8266 have to be reprogrammed to run at 38400? Can it run at 115000 in the TF330?

Edit: Im reading and re-reading this thread, and Im just seeking clarity as to weather an ESP8266 has to be updated/upgraded/modified with any firmware of config in order to work with the TF330. Does https://github.com/martin-ger/esp_slip_router need to be applied?

Or will an ESP8266 just work out of the box in the TF330 and a TCP/IP stack installed... ?
theq
Posts: 114
Joined: 18 Dec 2018 19:16
Location: North of the Wall

Re: Drivers for ESP modules

Post by theq »

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?
Yes, they need to be programmed and they can run at 115200 in the TF330.
matt020 wrote: 02 Apr 2020 04:47 Or will an ESP8266 just work out of the box in the TF330 ... <snipp>... ?
No, they won't.

You can program these with, and not limited to, i.e. a Raspberry Pi or a USBtoSerial-dongle thingy.
The software for these can be found online for free.
theq
Posts: 114
Joined: 18 Dec 2018 19:16
Location: North of the Wall

Re: Drivers for ESP modules

Post by theq »

Got my ESP-01S' working.
Was picky on the programming method with esptool.py.
Had to use "--flash_mode dout" to get it to flash properly.

Next thing is to solder it to the ESP-header on my TF330 board ;)
theq
Posts: 114
Joined: 18 Dec 2018 19:16
Location: North of the Wall

Re: Drivers for ESP modules

Post by theq »

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.

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

literally unzip the zip file and type "Execute install_script" at a cli.
Your install_script worked perfectly.
Only thing I had to change was:

From:

Code: Select all

echo >>envarc:Sana2/slip0.config "serial.device 0 38400 192.168.240.2"
To:

Code: Select all

echo >>envarc:Sana2/slip0.config "serial.device 0 115200 192.168.240.2"
Thanks! :D
terriblefire
Admin sponsor
Admin sponsor
Posts: 5681
Joined: 28 Aug 2017 22:56
Location: Glasgow, UK

Re: Drivers for ESP modules

Post by terriblefire »

:fire: :fire: :fire: :cheer:
———
"It is not necessarily a supply voltage at no load, but the amount of current it can provide when touched that
indicates how much hurting you shall receive."

Return to “Terriblefire's channel”

Who is online

Users browsing this forum: CCBot and 44 guests