News:

Printed Amstrad Addict magazine announced, check it out here!

Main Menu
avatar_XeNoMoRPH

New project: WiFi card for CPC

Started by XeNoMoRPH, 18:56, 20 February 24

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

poulette73

Quote from: abalore on 00:10, 14 June 24
Quote from: poulette73 on 21:58, 13 June 24When I want to download "Flash programming utility", I have an error :
Login required
Please log in to upload files.


I have already downloaded many files from CPCWiki without having to log in...  ???

Of course, my CPC Wiki forum account and password are not working.
And I don't want to create another account on CPC Wiki again...

Is there a way to provide this DSK file in a simpler way ?
Fixed
Thank you !!  :)
It works  8)

ikari

Can I get SPI + WiFi + Ethernet module (all there is!) too? <3
A proud owner of a couple of 6128, one since childhood, 464s, 664, the Pluses, some accessories, a Spectrum +3 and a ... C64 Maxi.

abalore

#52
Quote from: ikari on 14:54, 08 October 24Can I get SPI + WiFi + Ethernet module (all there is!) too? <3

Hello, here is the available hardware for Amsteam:

- SPI card
- WiFi module
- Ethernet module
- SD Card module
- ROM Box
- Cartridge emulator
- Sound card

that said, some clarifications:

Ethernet module, SD Card module and sound card don't have the software ready yet, so you can have them but not use them.

The cartridge emulator card is required to play multi-load games (Academy, Agent X II, The Blues Brothers, R-Type, etc), as well as games released in cartridge.

The ROM Box is needed to have the Amsteam RSX commands, unless you have another hardware capable of adding ROMs to the system.

The sound card is not used in any game yet.

Price for all cards and modules is fixed to 40e. but there are the following packs:

- SPI + Wifi + ROMBox + Cartridge emulator _______ 140e
- SPI + Wifi + ROMBOX __________________________ 120e
- SPI + WiFi _____________________________________ 80e

I don't recommend to get the Ethernet and SD Card modules yet.

If you are interested, please contact in private message.

GUNHED

Please don't burn me for this blasphemous questions...

The M4 expansion has also WiFi. And the SF3 has WiFi too. ...

Could your software be used with the SF3 or M4 expansions too?

What are the technical differences to the project described in this thread.

Sorry for asking, I'm a CPC guy not a WiFi guy  ;) :)
http://futureos.de --> Get the revolutionary FutureOS (Update: 2024.10.27)
http://futureos.cpc-live.com/files/LambdaSpeak_RSX_by_TFM.zip --> Get the RSX-ROM for LambdaSpeak :-) (Updated: 2021.12.26)

abalore

Quote from: GUNHED on 19:21, 08 October 24Please don't burn me for this blasphemous questions...

The M4 expansion has also WiFi. And the SF3 has WiFi too. ...

Could your software be used with the SF3 or M4 expansions too?

What are the technical differences to the project described in this thread.

Sorry for asking, I'm a CPC guy not a WiFi guy  ;) :)

Any of those devices would work with Amsteam with a custom ROM, sadly I don't have any of them to develop the software.

The technical difference is this project is a SPI interface that supports not only wifi, but any SPI compatible device. And probably the fastest available: 1 IN / OUT = 1 byte.

GUNHED

Quote from: abalore on 19:55, 08 October 24
Quote from: GUNHED on 19:21, 08 October 24Please don't burn me for this blasphemous questions...

The M4 expansion has also WiFi. And the SF3 has WiFi too. ...

Could your software be used with the SF3 or M4 expansions too?

What are the technical differences to the project described in this thread.

Sorry for asking, I'm a CPC guy not a WiFi guy  ;) :)

Any of those devices would work with Amsteam with a custom ROM, sadly I don't have any of them to develop the software.

The technical difference is this project is a SPI interface that supports not only wifi, but any SPI compatible device. And probably the fastest available: 1 IN / OUT = 1 byte.
Thanks a lot for explaining. Good to know that there is a SPI feature!  :)

How does the fast IN/OUT work? 
http://futureos.de --> Get the revolutionary FutureOS (Update: 2024.10.27)
http://futureos.cpc-live.com/files/LambdaSpeak_RSX_by_TFM.zip --> Get the RSX-ROM for LambdaSpeak :-) (Updated: 2021.12.26)

abalore

Quote from: GUNHED on 12:06, 09 October 24
Quote from: abalore on 19:55, 08 October 24
Quote from: GUNHED on 19:21, 08 October 24Please don't burn me for this blasphemous questions...

The M4 expansion has also WiFi. And the SF3 has WiFi too. ...

Could your software be used with the SF3 or M4 expansions too?

What are the technical differences to the project described in this thread.

Sorry for asking, I'm a CPC guy not a WiFi guy  ;) :)

Any of those devices would work with Amsteam with a custom ROM, sadly I don't have any of them to develop the software.

The technical difference is this project is a SPI interface that supports not only wifi, but any SPI compatible device. And probably the fastest available: 1 IN / OUT = 1 byte.
Thanks a lot for explaining. Good to know that there is a SPI feature!  :)

How does the fast IN/OUT work?

It depends on the level of unrolling, example:

; Routine to read 1024 bytes from SPI
ld a,32
_read_loop
ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b
ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b
ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b
ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b
dec a
jp nz,_read_loop

that achieves around 200 KBytes/sec (1.6 Mbps). Same for writting (with outi instead of ini)

GUNHED

Quote from: abalore on 12:23, 09 October 24
Quote from: GUNHED on 12:06, 09 October 24
Quote from: abalore on 19:55, 08 October 24
Quote from: GUNHED on 19:21, 08 October 24Please don't burn me for this blasphemous questions...

The M4 expansion has also WiFi. And the SF3 has WiFi too. ...

Could your software be used with the SF3 or M4 expansions too?

What are the technical differences to the project described in this thread.

Sorry for asking, I'm a CPC guy not a WiFi guy  ;) :)

Any of those devices would work with Amsteam with a custom ROM, sadly I don't have any of them to develop the software.

The technical difference is this project is a SPI interface that supports not only wifi, but any SPI compatible device. And probably the fastest available: 1 IN / OUT = 1 byte.
Thanks a lot for explaining. Good to know that there is a SPI feature!  :)

How does the fast IN/OUT work?

It depends on the level of unrolling, example:

; Routine to read 1024 bytes from SPI
ld a,32
_read_loop
ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b
ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b
ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b
ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b:ini:inc b
dec a
jp nz,_read_loop

that achieves around 200 KBytes/sec (1.6 Mbps). Same for writting (with outi instead of ini)
Thanks, that's the way I do it with FutureOS too (reading from HD20 f.e.). Thanks for you answer.  :)
http://futureos.de --> Get the revolutionary FutureOS (Update: 2024.10.27)
http://futureos.cpc-live.com/files/LambdaSpeak_RSX_by_TFM.zip --> Get the RSX-ROM for LambdaSpeak :-) (Updated: 2021.12.26)

Powered by SMFPacks Menu Editor Mod