Welcome, Guest. Please login or register.


Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - TMTLOGIC

Pages: [1] 2 3
2
Hardware / Re: SymbiFace3 is near your Enterprise...
« on: 2022.November.26. 17:11:22 »
RSF3 is extended version of the SF3

some points:

- faster ARM dual core processor
- faster Wi-Fi
- DAC
- MIDI
- FM RADIO
- TFT settings / APPS
- FTP
- IR Remote Control
- SID

3
Hardware / Re: SymbiFace3 is near your Enterprise...
« on: 2022.November.17. 21:11:06 »
Great job :)

4
Hardware / Re: SymbiFace3 is near your Enterprise...
« on: 2021.February.23. 21:33:13 »

I advise you not to make too many Midi interfaces. because I am already working on the successor of the SF3. the RSF3
this RSF3 has a MIDI interface on board as standard

It is not yet clear when the Enterprise version will be released, the CPC version must work first.

5
Hardware / Re: SymbiFace3 is near your Enterprise...
« on: 2021.February.21. 23:06:10 »
OK.... I misunderstood all the conversation... it happens for reading too fast.

The SF3 has a diagnosis port at the rear, a 6 pin header, that is used for developing. It reacts on real time with the SF3.

I use Putty to connect to it with a USB to serial module.



The LOG file is also written to this port, so you can know what firmware version the SF3 has.

The pin-out is exactly the same.

(Attachment Link)

Note:  There are 2 versions... 5 volt and 3,3 Volt.      you needed the 3,3 Volt version

6
Hardware / Re: SymbiFace3 is near your Enterprise...
« on: 2021.February.21. 22:53:03 »
SF3 (CPC version) is playing MIDI with EMR midi software.   
We are busy with a MIDI adaptor for the Enterprise

https://youtu.be/YXQ2acY_SA0


7
Hardware / Re: SymbiFace3 is near your Enterprise...
« on: 2020.October.24. 20:13:25 »
:)

8
Hardware / Re: SymbiFace3 is near your Enterprise...
« on: 2020.October.24. 19:28:45 »


gforez is the engine behind the Enterprise version of the SF3.
He is committed to 200%.
so giving him a beer or cup of coffee is an idea

9
Illesztések / Re: A SymbiFace3 közel van az Enterprise-hoz!
« on: 2020.October.18. 17:49:27 »
you need an SD card for the SF3.
This SD card contains the SF3_EP.INI and some system files.

the SD card is standard Fat32 format

10
Programming / BASNUM Basic number generator
« on: 2020.October.17. 15:07:54 »

Easy and fast way to write basic programs on the PC.

Line numbers can be replaced by Labels.

Example input code: 

'*****************************************************************************************
'      TMTLOGIC
'
'      Basnum test program
'      Thanks to Frits h
'
'       Written for the Enterprise computer

'       pc dos prompt:
'      basnum.exe testprog.bng testprog.asc
'
'*****************************************************************************************

'      ------- System --------

bit0                  EQU         1
bit1                  EQU         2
bit2                  EQU         4
bit3                  EQU         8
bit4                  EQU         16
bit5                  EQU         32
bit6                  EQU         64
bit7                  EQU         128


char(tab)               EQU          9
char(spc)               EQU         32   
char(#)               EQU         35

number               EQU          5
label                  EQU         "This is an test"

'       ------- Main program -------

'*****************************************************************************************
main               REM    program
               
                  LET T

mainLoop            FOR T = 1 TO number
                     PRINT label
                     GOSUB prnSpace
                  NEXT
                  
                  GOTO mainLoop
                  
                  
prnSpace            REM print space

                  PRINT CHR$(char(spc))
                  RETURN
                  
                  END            
'*****************************************************************************************

Generate this :

10 REM  program
20 LET T;
30 FOR T = 1 TO 5
40 PRINT "This is an test"
50 GOSUB 80
60 NEXT
70 GOTO 30
80 REM print space
90 PRINT CHR$(32)
100 RETURN
110 end





11
Hardware / Re: SymbiFace3 is near your Enterprise...
« on: 2020.September.20. 17:11:36 »
shows the Display "CPLD UPDATE NEEDED?"

12
Hardware / Re: Questions about SymbiFace3
« on: 2020.August.05. 19:18:59 »
The Rom bank structure can you found on the SD card.
Only what this programs do is edit the bank directorys

13
Chat is done via TMTNET.
A communication system specially made for small systems.
Compare it with RS232 with an address addition.

Each user gives a UserId of 1..63
This UserId is available from me.

Example you are user 33.
And send the letter A to me (address 3)

(Without TX RX handler)

OUT 76.3 ... set address
OUT 77.65 ... send data


I see:


Blue RX WIFI LED lights up.

PRINT INP (76) AND 63 (address minus TX RX bits)

33

PRINT INP (77)

65

14
Hardware / Re: Questions about SymbiFace3
« on: 2020.July.14. 21:54:11 »
i can change the memory mapping.
but there are some limitations with the cpld.


15
Hardware / Re: Questions about SymbiFace3
« on: 2020.July.05. 20:50:27 »
When i have time... i will change the CPC cpld code.
the budir pin in an output pin.
And the sound of the CPC also.
First i will measure the signal values of the cpc audio
When its lower than 5v and higher if 0v.
The cpld busdir pin  can be modivfy to input pin

Pages: [1] 2 3