8 résultats trouvés

par Ringo
06 avr. 2013 12:57
Forum : Transferts PC
Sujet : Sharp PC 1500 -> Mac
Réponses : 39
Vues : 65092

Re: Sharp PC 1500 -> Mac

If you solved the problem, tell us what the problem was and how you solved it in order to enable others to learn from your experience.
If the problem still exists, describe which program you used, what you did, what you expected and what happened. Photos and videos can be helpful.
par Ringo
01 avr. 2013 23:41
Forum : Transferts PC
Sujet : Sharp PC 1500 -> Mac
Réponses : 39
Vues : 65092

Re: Sharp PC 1500 -> Mac

See viewtopic.php?f=23&t=15918&start=15#p321697
Give me a link to your Mac file and I'll try to convert the file on my Mac emulating the cassette coding and decoding routines of the Sharp Pocket PC. If this does not work, it won't work on the Pocket PC either.
par Ringo
03 juin 2010 01:08
Forum : Tous les Pockets
Sujet : Le connecteur 11 pins du pc 1403
Réponses : 17
Vues : 12309

Re: Le connecteur 11 pins du pc 1403

Merci pour les reponses.
- Bonne idee avec POCKEMUL, mais chez moi ca ne marche pas bien (Je l'ai essaye sur Windows XP et sur un Mac Intel avec emulation PowerPC). J'ai l'impression que le logiciel est seulement beta. Est-ce ca marche chez quelqu'un d'autre?
- Je pense que le desassemblage est une bonne idee, mais j'ai seulement un 1262 est pas de fichier avec le contenu du ROM. Est-ce possible que quelqu'un m'envoie la partie du ROM pour l'impression ou encore mieux le texte desassemble? Je ferais alors le travail de comprendre le langage machine (SC61860).
par Ringo
01 juin 2010 22:21
Forum : Tous les Pockets
Sujet : Le connecteur 11 pins du pc 1403
Réponses : 17
Vues : 12309

Re: Le connecteur 11 pins du pc 1403

"je laisse l'emulation aller à son maximum et donc j'emule la liason serie (en bit à bit en comptant les cycles d'horloges entre chaque bit pour rester synchro."

Y-a-t-il une description plus detaillee du protocole de communication avec le CE126P au niveau du connecteur 11 pin? Je pense a realiser un convertisseur qui emule le CE126P.
(Je sais que Olaf Kaluza a fait ca avec un MCS48 il y a quelques annees. Je l'ai deja contacte mais il semble qu'il ne lui va pas possible de fournir plus d'information, il me faudrait analyser les sources. Rudolf Nemeth n'a pas plus d'information non plus.)
par Ringo
17 janv. 2010 18:53
Forum : Transferts PC
Sujet : Sharp PC 1500 -> Mac
Réponses : 39
Vues : 65092

Re: Sharp PC 1500 -> Mac

This should work if your wave recording is of good quality:
cd /Applications/Pour\ Sharp\ PC-XXXX/Logiciels\ PC-1500/wav2bin
./WAV2BIN bonneannéePC-1500.wav bonneannéePC-1500.txt

This will display the usage information of WAV2BIN:
cd /Applications/Pour\ Sharp\ PC-XXXX/Logiciels\ PC-1500/wav2bin
./WAV2BIN

I would like to have a closer look at your waveform recordings. Can you make a recording with a sample frequency as high as possible? E.g. 50 kHz?
par Ringo
16 janv. 2010 23:39
Forum : Transferts PC
Sujet : Sharp PC 1500 -> Mac
Réponses : 39
Vues : 65092

Re: Sharp PC 1500 -> Mac

The easiest way is to put wav2bin and the wave file in the same directory. In the terminal window, go to this directory by typing CD followed by the name of the directory (drag and drop the directory, this copies its name into the terminal window). Type ./WAV2BIN followed by return. This will display the usage information.

[macmini:~/Desktop/sharp/bonne] norbert% ./wav2bin

Usage : WAV2BIN srcfile dstfile [T:type] [G:graph]

srcFile : Source file name (Wav file)
dstFile : Destination file name (Basic or Binary file)
type : Destination file type for Basic source file :
IMG -> Basic binary image, BAS -> Basic (default)
graph : Special character conversion for BAS type :
YES -> Convert, NO -> No conversion (default)

Version : 1.34
Author : Pocket -> www.pocketmuseum.com
par Ringo
16 janv. 2010 22:57
Forum : Transferts PC
Sujet : Sharp PC 1500 -> Mac
Réponses : 39
Vues : 65092

Re: Sharp PC 1500 -> Mac

I can hardly see anything on your video as it is too blurred. But it seems that you are only playing back what you recorded. Your pocket PC can't decode that, and so can't wav2bin. Analysis in Audacity shows that the waveform is slightly distorted, therefore making it harder to decode. It could be that you have a bad connection or a slight defect in your interface. I applied a 1 kHz low pass filter on the waveform and normalized the result. wav2bin could then decode the wave file. You can create an even further cleaned up version by using bin2wav on the (binary) result of wav2bin.
Here is what I got:
1 ARUN :LF -5:COLOR 2
2 PRINT " SALUT ALEX"
4 CLS
5 END
10 CLEAR :DIM R$(4)*24:DIM S$(4)*24
20 REM VARIABLES ERREUR 1
30 R$(0)="VOUS N ECOUTEZ PAS!"
40 R$(1)="Pffffff..."
50 R$(2)="N IMPORTE QUOI!!"
60 R$(3)="ON VOUS A DEMANDE QUOI?"
70 R$(4)="VOUS SAVEZ LIRE?"
80 REM VARIABLES ERREUR 2
90 S$(0)="NON MAIS C EST PAS VRAI!"
100 S$(1)="VOUS LE FAITES EXPRES?"
110 S$(2)="...ET VAS-Y..."
120 S$(3)="VOUS VOULEZ PAS JOUER?"
130 S$(4)="ESSAIE ENCORE!"
150 INPUT "Entrez le mot: BONNE",B$
160 IF B$="BONNE"THEN GOTO 190
170 IF B$<>"BONNE"THEN GOSUB 300
180 GOTO 150
190 INPUT "Entrez le mot: ANNEE",A$
200 IF A$="ANNEE"THEN GOTO 230
210 IF A$<>"ANNEE"THEN GOSUB 340
220 GOTO 190
230 IF C=0GOTO 250
240 WAIT 110:PRINT "AH! BEN QUAND MEME"
250 WAIT :BEEP 2:PRINT " BONNE ANNEE 2010!"
270 END
300 RANDOM :X=RND 4
310 IF C>=1THEN GOTO 350
320 C=C+1:WAIT 110:PRINT R$(X)
330 RETURN
340 RANDOM :X=RND 4
350 C=C+1:WAIT 110:PRINT S$(X)
360 RETURN
par Ringo
14 janv. 2010 21:40
Forum : Transferts PC
Sujet : Sharp PC 1500 -> Mac
Réponses : 39
Vues : 65092

Re: Sharp PC 1500 -> Mac

What error message exactly do you get?
Do you want me to try and decode your wave file on my Mac?

Aller à la recherche avancée