-
Notifications
You must be signed in to change notification settings - Fork 1
/
mz2tape.ino
1879 lines (1674 loc) · 61.2 KB
/
mz2tape.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
MZF2TAPE V1.0
(c)Jean-François CAMPAN 2018 (pacman)
Licence : GNU GPL v2
Sur une idee de hlide (SD2MZCMT). Merci.
Remplace le lecteur de Cassette du Sharp MZ-700
par une version carte SD et diffusion de fichiers MZF/M12/MZT/BIN
Utilise :
- Afficheur graphique RepRapDiscount Full Graphic Smart Controller
- ARDUINO ATMEGA 2560
- CARTE de connexion
Connexions :
SHARP MZ-700 ARDUINO ATMEGA2560
REMOTE 14
SENSE 15
WRITE 18
READ 19
E (GND) GND
Utilisation :
A l'initialisation demande le profil utiliser.
Pour modifier un profil, faire un appui long (>5s) pendant le choix d'un fichier
Les durées du profil personnalise sont modifiables.
A Faire :
- Avec 64 fichiers dans un dossier c'est encore trop lent !
- Correction de bug de retour au dossier parent sur la bonne ligne
- Interrompre la lecture avec le bouton
- Afficher le % de lecture
- Enregistrement sur carte SD des donnees issues de la borne WRITE directement en .MZF
- Mettre en place les turbos
*/
#include "U8glib.h"
#include <RotaryEncoder.h>
#include <SdFat.h>
#include <SPI.h>
#include <EEPROM.h>
#define NOM_PROGRAMME "MZF2TAPE v1.0"
#define COPYRIGHT "(c)JFC 2018"
//#define INTERFACE_SERIE false
#define INTERFACE_SERIE_BAUD 115200
boolean transfert_rapide_actif = true ;
// ==================================
// Interface Cassette SHARP MZ
// ==================================
#define MZ_CASSETTE_REMOTE 14 // Lecteur de cassette MZ Borne REMOTE (MOTOR ON : Entree)
#define MZ_CASSETTE_SENSE 15 // Lecteur de cassette MZ Borne /SENSE (Detection mise en route moteur : Sortie)
#define MZ_CASSETTE_WRITE 18 // Lecteur de cassette MZ Borne WRITE (Ecriture des donnees : Entree)
#define MZ_CASSETTE_READ 19 // Lecteur de cassette MZ Borne READ (Lecture des donnees : Sortie)
#define LED 13 // LED d'indication du fonctionnemnt de l'interface
// Definition des durees pour les differents type de machines
// Duree Front Haut + Duree Periode en micro-secondes
unsigned long durees [12] = {
464, 958, // Sharp MZ-700/MZ-80K/MZ-80A : Bit 1
240, 504, // Sharp MZ-700/MZ-80K/MZ-80A : Bit 0
470, 954, // Sharp MZ-800 : Bit 1
240, 518, // Sharp MZ-800 : Bit 0
333, 667, // Sharp MZ-80B : Bit 1
167, 333, // Sharp MZ-80B : Bit 0
} ;
/*
Profil Machine :
Sharp MZ-700/MZ80K/MZ-80A : 0
Sharp MZ-800 : 1
Sharp MZ-80B : 2
Personnalise : 3
*/
uint8_t profil_machine = 0 ;
// Valeurs par defaut du profil perso stockees en EEPROM
unsigned long profil_perso [4] = { 240, 504, 464, 958 } ;
/*
Calcul des multiples de 16us pour avoir la duree le plus proche
des valeurs theoriques attendues
*/
unsigned long duree_haut_reelle_bit_1 = 0 ;
unsigned long duree_periode_reelle_bit_1 = 0 ;
unsigned long duree_haut_reelle_bit_0 = 0 ;
unsigned long duree_periode_reelle_bit_0 = 0 ;
// ==================================
// Adresses de stockage EEPROM
// ==================================
#define EEPROM_CHOIX_PROFIL 0 // Permet de savoir si on a choisi un profil ou pas
#define EEPROM_NUM_PROFIL 2 // Numero du profil choisi
#define EEPROM_PERSO_BIT_0 4 // Largeur du bit 0 pour le profil personnalise (en us)
#define EEPROM_PERSO_BIT_1 8 // Largeur du bit 1 pour le profil personnalise (en us)
// ==================================
// Interface SD
// ==================================
// Interface SD
#define SD0_MO 50 // SD MOSI
#define SD0_MI 51 // SD MISO
#define SD0_CK 52 // SD SCK
#define SD0_SS 53 // SS SS
// Structure des donnees
#define SD_REP_PROF 5 // Profondeur d'acces dans la structure maximale
#define SD_TAILLE_NOM_COURT 13 // Taille de fichier en 8.3
#define SD_TAILLE_NOM_LONG 25 // Taille du nom du fichier a utiliser
// Ensemble des types reconnus
#define TYPE_FORMAT_INCONNU 0
#define TYPE_FORMAT_RETOUR_DOSSIER 1
#define TYPE_FORMAT_REPERTOIRE 2
#define TYPE_FORMAT_MZF 3
#define TYPE_FORMAT_MZT 4
#define TYPE_FORMAT_M12 5
#define TYPE_FORMAT_BIN 6
// Variables SD
SdFat sd ;
SdFile entree ;
SdFile repertoire [SD_REP_PROF] ;
char nom_fichier_court [SD_TAILLE_NOM_COURT] ;
char nom_fichier_long [SD_TAILLE_NOM_LONG+1] ;
uint8_t entree_type = TYPE_FORMAT_INCONNU ; // Type par defaut
int16_t entree_index = 0 ;
uint32_t entree_taille = 0 ;
bool sd_pret = false ;
int8_t sd_rep_profondeur = -1 ;
int16_t sd_rep_index [SD_REP_PROF] = { } ;
bool annuler = false ;
// ==================================
// LCD Graphique 128x64
// ==================================
// SPI Com: SCK = en = 23, MOSI = rw = 16, CS = di = 17
int LCD4 = 23 ; // D23
int LCDE = 17 ; // D17
int LCDRS = 16 ; // D16
// Icones
const uint8_t icone_dossier [] PROGMEM = {
B00000,
B00000,
B00011,
B11101,
B10001,
B10001,
B11111,
B00000
} ;
const uint8_t icone_remonte [] PROGMEM = {
B00000,
B00100,
B01110,
B11111,
B00100,
B00100,
B11100,
B00000
} ;
// ==================================
// Encodeur rotatif integre
// ==================================
// BTN EN1=31 ; BTN EN2=33 ; SWITCH=35
int ENCODEUR_1 = 31 ;
int ENCODEUR_2 = 33 ;
int BOUTON = 35 ;
int encodeurDernierePosition = 0 ;
int encodeurNouvellePosition = 0 ;
int bouton_valeur = 0 ;
unsigned long date_debut = 0 ;
unsigned long date_fin = 0 ;
// Durees d'appuie minimal pour choisir ou modifier le profil machine
#define DUREE_BOOT 5 // Duree au BOOT 5s par defaut
#define DUREE_INTERFACE 3 // Duree en utilisation 3s par defaut
// ==================================
// Interface de menu
// ==================================
#define MENU_NOMBRE_MAX 500 // Nombre de fichiers maximum sur la carte SD
#define MENU_POS_Y 9 // Position de depart en Y du menu
#define MENU_NOMBRE_AFFICHAGE 6 // Nombre d'items a l'ecran maximum
#define MENU_SELECTION 2 // Position de la selection sur fichier
#define AFFICHE_PRESENTATION 0
#define AFFICHE_ERREUR_SD 1
#define AFFICHE_LECTURE_SD 2
#define AFFICHE_LC_SD 3
#define AFFICHE_LISTE_CHOIX 4
#define AFFICHE_PROPRIETES 5
uint16_t nombre_fichiers = 0 ; // Nombre de fichiers reel pour stockage
int16_t menu_nombre = 0 ; // Nombre de fichiers reel pour menu
int16_t menuNum [MENU_NOMBRE_MAX] ; // Contient la liste des numeros des fichiers dans l'ordre pour affichage
uint8_t menu_courant = 0 ;
uint8_t menu_position = 0 ;
int16_t menu_debut = -MENU_SELECTION ;
int16_t menu_debut_sauve = menu_debut ;
uint8_t menu_retrace = 1 ;
uint8_t menu_lecture = 0 ;
// ==================================
// Type de fichier MZF/M12/MZT/BIN
// ==================================
#define MZF_INCONNU 0
#define MZF_BINAIRE 1
#define MZF_KUMA_INT 2
#define MZF_KUMA_COMPILER 3
#define MZF_BASIC_MZ700 4
#define MZF_BINAIRE_PURE 5
#define MZF_DATA_MZ700 6
#define MZF_BASIC_MZ80 7
#define MZF_DATA_MZ80 8
#define MZF_BINAIRE_MZF1 9
byte mzf_type = 0 ;
unsigned int mzf_taille = 0 ;
unsigned int mzf_adresse = 0 ;
unsigned int mzf_execution = 0 ;
// ==================================
// Initialisation des peripheriques
// ==================================
U8GLIB_ST7920_128X64_1X lcd (LCD4, LCDE, LCDRS) ;
RotaryEncoder encoder (ENCODEUR_1, ENCODEUR_2) ;
/*
=================================================================================
Fonction de convertion d'un nombre en uint32_t vers chaine de 6 caracteres
sans les '0' initiaux pour affichage de la taille d'un fichier
=================================================================================
*/
const char *uint32_t2Char (uint32_t taille)
{
byte i = 0 ;
static char buf [7] ;
static char buf1 [2] ;
uint32_t v1 = taille/10000 ;
strcpy (buf1, u8g_u8toa ((uint8_t)(v1), 2)) ;
buf [0] = buf1 [0] ;
buf [1] = buf1 [1] ;
uint32_t v2 = (taille-v1*10000)/100 ;
strcpy (buf1, u8g_u8toa ((uint8_t)(v2), 2)) ;
buf [2] = buf1 [0] ;
buf [3] = buf1 [1] ;
uint32_t v3 = taille-v1*10000-v2*100 ;
strcpy (buf1, u8g_u8toa ((uint8_t)(v3), 2)) ;
buf [4] = buf1 [0] ;
buf [5] = buf1 [1] ;
buf [6] = '\0' ;
// Enleve les '0' a gauche
while ((buf [i] == '0') && (i < 6)) { buf [i] = (char)' ' ; i++ ; }
return buf ;
}
/*
=================================================================================
Fonction de convertion d'un nombre en unsigned long vers chaine de 4 caracteres
sans les '0' initiaux pour affichage de la taille d'un fichier
=================================================================================
*/
const char *long2Char (uint32_t valeur)
{
byte i = 0 ;
static char buf [5] ;
static char buf1 [2] ;
uint32_t v1 = valeur/100 ;
strcpy (buf1, u8g_u8toa ((uint8_t)(v1), 2)) ;
buf [0] = buf1 [0] ;
buf [1] = buf1 [1] ;
uint32_t v2 = valeur-v1*100 ;
strcpy (buf1, u8g_u8toa ((uint8_t)(v2), 2)) ;
buf [2] = buf1 [0] ;
buf [3] = buf1 [1] ;
buf [4] = '\0' ;
// Enleve les '0' a gauche
while ((buf [i] == '0') && (i < 4)) { buf [i] = (char)' ' ; i++ ; }
if (i == 4) { buf [3] = (char)'0' ; }
return buf ;
}
/*
=================================================================================
Fonction de convertion d'un nombre en uint16_t vers chaine de 4 caracteres
pour affichage hexadecimale
=================================================================================
*/
const char *uint16_t2Hexa (uint16_t valeur)
{
char c [16] = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'} ;
static char buf [5] ;
uint8_t v1 = (byte)(valeur/4096) ;
buf [0] = c [v1] ;
uint8_t v2 = (byte)((valeur-v1*4096)/256) ;
buf [1] = c [v2] ;
uint8_t v3 = (byte)((valeur-v1*4096-v2*256)/16) ;
buf [2] = c [v3] ;
uint8_t v4 = (byte)(valeur-v1*4096-v2*256-v3*16) ;
buf [3] = c [v4] ;
buf [4] = '\0' ;
return buf ;
}
/*
* Fonction de lecture de l'EEPROM pour retouver les valeurs personnalisees
*/
void lectureProfil ()
{
profil_machine = EEPROM.read (EEPROM_NUM_PROFIL) ;
if (profil_machine == 3)
{
// On recupere le profil personnalise
for (uint8_t i = 0 ; i < 2 ; i++)
{
profil_perso [i+0] = (uint16_t)(EEPROM.read (EEPROM_PERSO_BIT_0+i*2+0))+(uint16_t)(EEPROM.read (EEPROM_PERSO_BIT_0+i*2+1)<<8) ;
profil_perso [i+2] = (uint16_t)(EEPROM.read (EEPROM_PERSO_BIT_1+i*2+0))+(uint16_t)(EEPROM.read (EEPROM_PERSO_BIT_1+i*2+1)<<8) ;
}
if (profil_perso [0] > 9999) { profil_perso [0] = 240 ; }
if (profil_perso [1] > 9999) { profil_perso [1] = 504 ; }
if (profil_perso [2] > 9999) { profil_perso [2] = 464 ; }
if (profil_perso [3] > 9999) { profil_perso [3] = 958 ; }
if (profil_perso [1] < profil_perso [0]) { profil_perso [1] = profil_perso [0] ; }
if (profil_perso [3] < profil_perso [2]) { profil_perso [3] = profil_perso [2] ; }
}
}
/*
* Fonction de sauvegarde en EEPROM du profil selectione
*/
void ecritureProfil ()
{
EEPROM.write (EEPROM_CHOIX_PROFIL, 1) ;
EEPROM.write (EEPROM_NUM_PROFIL, profil_machine) ;
if (profil_machine == 3)
{
// On ecrit le profil personnalise
for (uint8_t i = 0 ; i < 2 ; i++)
{
EEPROM.write (EEPROM_PERSO_BIT_0+i*2+0, (byte)(profil_perso [i] & 0x00FF)) ; // Bit 0 H
EEPROM.write (EEPROM_PERSO_BIT_0+i*2+1, (byte)((profil_perso [i] >>8) & 0x00FF)) ; // Bit 0 T
EEPROM.write (EEPROM_PERSO_BIT_1+i*2+0, (byte)(profil_perso [i+2] & 0x00FF)) ; // Bit 1 H
EEPROM.write (EEPROM_PERSO_BIT_1+i*2+1, (byte)((profil_perso [i+2] >>8) & 0x00FF)) ; // Bit 1 T
}
}
}
/*
=================================================================================
Fonction de classement en ordre alphabetique des fichiers d'un dossier
=================================================================================
*/
/*
Fonction de comparaison caractere a caractere pour ordre alphabetique
Ne tient pas compte de la casse.
Renvoi 1 si Inversion a faire sinon 0
*/
byte nomPlusPetit (char *nom_1, char *nom_2)
{
char car1 ;
char car2 ;
uint16_t i = 0 ;
while (i < strlen (nom_1))
{
car1 = (char)toLowerCase(nom_1 [i]) ;
if (strlen (nom_2) < i) { return 1 ; }
else
{
car2 = (char)toLowerCase (nom_2 [i]) ;
if (car2 > car1) { return 1 ; }
if (car2 < car1) { return 0 ; }
i++ ;
}
}
return 0 ;
}
/*
Fonction de classement par ordre alphabetique en utilisant la methode
du tri a bulle
*/
void ordreAlphabetique (int16_t premier)
{
int16_t i ;
int16_t j ;
int16_t k ;
char nom1 [SD_TAILLE_NOM_LONG+1] ;
char nom2 [SD_TAILLE_NOM_LONG+1] ;
for (i = premier ; i < menu_nombre ; i++)
{
j = i ;
while (j >= premier)
{
obtientEntree (menuNum [j]) ;
for (k = 0 ; k <= SD_TAILLE_NOM_LONG ; k++) { nom1 [k] = nom_fichier_long [k] ; }
obtientEntree (menuNum [j-1]) ;
for (k = 0 ; k <= SD_TAILLE_NOM_LONG ; k++) { nom2 [k] = nom_fichier_long [k] ; }
if (nomPlusPetit (nom1, nom2) == 1)
{
// Inversion
k = menuNum [j] ;
menuNum [j] = menuNum [j-1] ;
menuNum [j-1] = k ;
}
j-- ;
}
}
}
/*
=================================================================================
Fonctions de base de reconnaissance des formats de fichier
=================================================================================
*/
bool testExtmzf (char *nom_fichier)
{
return !!strstr (strlwr (nom_fichier + (strlen (nom_fichier)-4)), ".mzf") ;
}
bool testExtmzt (char *nom_fichier)
{
return !!strstr (strlwr (nom_fichier + (strlen (nom_fichier)-4)), ".mzt") ;
}
bool testExtm12 (char *nom_fichier)
{
return !!strstr (strlwr (nom_fichier + (strlen (nom_fichier)-4)), ".m12") ;
}
bool testExtbin (char *nom_fichier)
{
return !!strstr (strlwr (nom_fichier + (strlen (nom_fichier)-4)), ".bin") ;
}
/*
=================================================================================
Fonctions de reconnaissance de type de donnees
=================================================================================
*/
void typeFichierMZ ()
{
unsigned char donnee ;
entree.seekSet (0) ;
// Lecture du type de fichier
donnee = entree.read () ;
switch (donnee)
{
// Binaire et Kuma Interpreter/Compiler
case 0x01 : if (mzf_execution != 0x0000) { mzf_type = MZF_BINAIRE ; }
else { mzf_type = MZF_KUMA_COMPILER ; }
// Lecture du nom du fichier long
for (int i = 0 ; i < 17 ; i++) { entree.read () ; }
break ;
// Basic MZ80
case 0x02 : mzf_type = MZF_BASIC_MZ80 ;
// Lecture du nom du fichier long
for (int i = 0 ; i < 17 ; i++) { entree.read () ; }
break ;
// DATA MZ80
case 0x03 : mzf_type = MZF_DATA_MZ80 ;
// Lecture du nom du fichier long
for (int i = 0 ; i < 17 ; i++) { entree.read () ; }
break ;
case 0x04 : mzf_type = MZF_DATA_MZ700 ;
break ;
// Sharp Basic 1Z-013B et Kuma Interpreter/Compiler
case 0x05 : if ((mzf_adresse == 0x6BCF) ||
(mzf_adresse == 0x0000)) { mzf_type = MZF_BASIC_MZ700 ; }
else if (mzf_adresse == 0x4000) { mzf_type = MZF_KUMA_INT ; }
// Lecture du nom du fichier long
for (int i = 0 ; i < 17 ; i++) { entree.read () ; }
break ;
// MZF1
case 0x4D : //(Buffer [0] = $4D) And (Buffer [1] = $5A) And (Buffer [2] = $46) And
//(Buffer [3] = $31)
mzf_type = MZF_BINAIRE_MZF1 ;
// Saut de l'entete MZF1
for (int i = 0 ; i < 4 ; i++) { entree.read () ; }
// Lecture du nom du fichier long
for (int i = 0 ; i < 17 ; i++) { entree.read () ; }
break ;
// Binaire BIN
case 0xFE : mzf_type = MZF_BINAIRE_PURE ;
break ;
}
if (mzf_type == MZF_BINAIRE_PURE)
{
// Adresse
mzf_adresse = (entree.read () & 0xFF) << 0 ;
mzf_adresse += (entree.read () & 0xFF) << 8 ;
// Taille
mzf_taille = entree_taille-7 ;
entree.read () ;
entree.read () ;
// Execution
mzf_execution = (entree.read() & 0xFF) << 0 ;
mzf_execution += (entree.read() & 0xFF) << 8 ;
}
else
{
mzf_taille = (entree.read () & 0xFF) << 0 ;
mzf_taille += (entree.read () & 0xFF) << 8 ;
mzf_adresse = (entree.read () & 0xFF) << 0 ;
mzf_adresse += (entree.read () & 0xFF) << 8 ;
mzf_execution = (entree.read() & 0xFF) << 0 ;
mzf_execution += (entree.read() & 0xFF) << 8 ;
}
}
/*
=================================================================================
Fonction de lecture de la carte SD
=================================================================================
*/
/*
Fonction qui renvoi l'entree courante du repertoire ouvert courant
@arg int16_t nouvel_index Numero valide de l'entreea obtenir
*/
void obtientEntree (int16_t nouvel_index)
{
bool trouve = true ;
int16_t index = 0 ;
entree.close () ;
if (nouvel_index < 0) { nouvel_index = 0 ; }
do
{
repertoire [sd_rep_profondeur].rewind () ;
index = 0 ;
while (index <= nouvel_index)
{
trouve = entree.openNext (&repertoire [sd_rep_profondeur], O_READ) ;
if (trouve)
{
if ((!entree.isHidden ()) && (!entree.isSystem ()))
{
if (index == nouvel_index) { break ; }
index++ ;
}
entree.close () ;
}
else { break ; }
}
if (!trouve) { nouvel_index = entree_index ; }
}
while (!trouve && index > 0) ;
if (trouve)
{
entree.getSFN (nom_fichier_court) ;
entree.getName (nom_fichier_long, SD_TAILLE_NOM_LONG) ;
if (entree.isDir ()) { entree_type = TYPE_FORMAT_REPERTOIRE ; }
else if (testExtmzf (nom_fichier_long)) { entree_type = TYPE_FORMAT_MZF ; }
else if (testExtmzt (nom_fichier_long)) { entree_type = TYPE_FORMAT_MZT ; }
else if (testExtm12 (nom_fichier_long)) { entree_type = TYPE_FORMAT_M12 ; }
else if (testExtbin (nom_fichier_long)) { entree_type = TYPE_FORMAT_BIN ; }
else { entree_type = TYPE_FORMAT_INCONNU ; }
entree_taille = entree.fileSize () ;
entree_index = nouvel_index ;
}
else
{
memset (nom_fichier_court, 0, SD_TAILLE_NOM_COURT) ;
memset (nom_fichier_long, 0, SD_TAILLE_NOM_LONG + 1) ;
strcpy (nom_fichier_long, "<pas de fichier>") ;
Serial.println ("Erreur : Aucun fichier ou dossier !") ;
}
}
/*
Fonction permettant d'entrer dans un dossier
*/
void entrerRepertoire ()
{
if (sd_rep_profondeur < SD_REP_PROF - 2)
{
if (sd_rep_profondeur < 0)
{
if (repertoire[0].openRoot (&sd))
{
sd_rep_profondeur++ ;
obtientEntree (0) ;
}
else
{
Serial.println ("Erreur : Je ne peux pas ouvrir le repertoire racine !") ;
}
}
else if (entree.isOpen ())
{
sd_rep_profondeur++ ;
repertoire [sd_rep_profondeur] = entree ;
sd_rep_index [sd_rep_profondeur] = entree_index ;
//Serial.print ("sd_rep_index [") ; Serial.print (sd_rep_profondeur) ; Serial.print ("] = ") ; Serial.println (entree_index) ;
obtientEntree (0) ;
}
else
{
Serial.println ("Erreur : Dossier inexistant !") ;
}
}
else
{
Serial.println ("Erreur : Trop de sous-dossier !") ;
}
}
/*
Fonction qui permet de quitter un dossier pour remonter a sa racine
*/
void sortirRepertoire ()
{
if (sd_rep_profondeur > 0)
{
repertoire [sd_rep_profondeur].close () ;
entree_index = sd_rep_index [sd_rep_profondeur] ;
//Serial.print ("entree_index=") ; Serial.println (entree_index) ;
sd_rep_profondeur-- ;
//obtientEntree (entree_index) ;
}
}
/*
Fonction de recherche, 'd'ajout et de classement des repertoires et fichiers
d'un dossier courant
*/
void rechercheFichiers ()
{
uint8_t old_entree = 0 ;
uint16_t nbrDossiers = 0 ;
nombre_fichiers = 0 ;
obtientEntree (0) ;
// Recherche des dossiers
do
{
if (entree_type == TYPE_FORMAT_REPERTOIRE)
{
//Serial.print ("menuNum[") ; Serial.print (nombre_fichiers) ; Serial.print ("]=") ; Serial.print (entree_index) ;
//Serial.print (" > ") ; Serial.println (nom_fichier_long) ;
menuNum [nombre_fichiers] = entree_index ;
nombre_fichiers++ ;
}
old_entree = entree_index ;
obtientEntree (entree_index + 1) ;
}
while (entree_index > old_entree) ;
nbrDossiers = nombre_fichiers ;
menu_nombre = nombre_fichiers ;
if (menu_nombre > 1) { ordreAlphabetique (1) ; }
//for (int16_t l = 0 ; l < menu_nombre ; l++)
// {
// Serial.print (menuNum [l]) ; Serial.print (" ") ;
// }
//Serial.println () ;
// Recherche des fichiers
obtientEntree (0) ;
do
{
if (entree_type > TYPE_FORMAT_REPERTOIRE)
{
//Serial.print ("menuNum[") ; Serial.print (nombre_fichiers) ; Serial.print ("]=") ; Serial.print (entree_index) ;
//Serial.print (" > ") ; Serial.println (nom_fichier_long) ;
menuNum [nombre_fichiers] = entree_index ;
nombre_fichiers++ ;
}
old_entree = entree_index ;
obtientEntree (entree_index + 1) ;
}
while (entree_index > old_entree) ;
menu_nombre = nombre_fichiers ;
if (menu_nombre-nbrDossiers > 1) { ordreAlphabetique (nbrDossiers+1) ; }
//for (int16_t l = 0 ; l < menu_nombre ; l++)
// {
// Serial.print (menuNum [l]) ; Serial.print (" ") ;
// }
//Serial.println () ;
}
/*
=================================================================================
Fonctions de lecture des fichiers + diffusion vers le MZ
=================================================================================
*/
/*
Fonction de calcul des durees reelles en fonction du profil machine
*/
void calculDurees (uint8_t pm)
{
unsigned long a = 0 ;
if (pm == 3) { a = profil_perso [2] ; } else { a = (unsigned long)(durees [pm*4]/16) ; }
a = a*16+16 ;
if (a > durees [pm*4]) { duree_haut_reelle_bit_1 = a-16 ; }
else { duree_haut_reelle_bit_1 = a ; }
if (pm == 3) { a = profil_perso [3] ; } else { a = (unsigned long)(durees [pm*4+1]/16) ; }
a = a*16+16 ;
if (a > durees [pm*4+1]) { duree_periode_reelle_bit_1 = a-16 ; }
else { duree_periode_reelle_bit_1 = a ; }
if (pm == 3) { a = profil_perso [0] ; } else { a = (unsigned long)(durees [pm*4+2]/16) ; }
a = a*16+16 ;
if (a > durees [pm*4+2]) { duree_haut_reelle_bit_0 = a-16 ; }
else { duree_haut_reelle_bit_0 = a ; }
if (pm == 3) { a = profil_perso [1] ; } else { a = (unsigned long)(durees [pm*4+3]/16) ; }
a = a*16+16 ;
if (a > durees [pm*4+3]) { duree_periode_reelle_bit_0 = a-16 ; }
else { duree_periode_reelle_bit_0 = a ; }
}
/*
Emission d'un Bit d'une duree en microsecondes
et d'un temps haut d'une duree tempsHaut
*/
void emissionBit (unsigned long duree, unsigned long tempsHaut)
{
unsigned long depart = micros () ; // Debut d'emission
digitalWrite (MZ_CASSETTE_READ, HIGH) ; // Mise a 1 de la sortie
while (micros () < depart + tempsHaut) ;
digitalWrite (MZ_CASSETTE_READ, LOW) ; // Mise a 0 de la sortie
while (micros () < depart + duree) ;
}
/*
Emission du GAP : Synchronisation logiciel/materiel
LGAP : 22000 impulsions bit 0
SGAP : 11000 impulsions bit 0
*/
void emissionGAP (uint16_t nombre)
{
for (uint16_t i = 0 ; i < nombre ; i++)
emissionBit (duree_periode_reelle_bit_0, duree_haut_reelle_bit_0) ;
}
/*
Emission TapeMark : Indique le debut d'un bloc de donnees
LTM : 40 impulsions bit 1 + 40 impulsions bit 0 + 1 Bit 1
STM : 20 impulsions bit 1 + 20 impulsions bit 0 + 1 Bit 1
*/
void emissionTapeMark (uint16_t nombre)
{
uint16_t i = 0 ;
for (i = 0 ; i < nombre ; i++)
emissionBit (duree_periode_reelle_bit_1, duree_haut_reelle_bit_1) ;
for (i = 0 ; i < nombre ; i++)
emissionBit (duree_periode_reelle_bit_0, duree_haut_reelle_bit_0) ;
emissionBit (duree_periode_reelle_bit_1, duree_haut_reelle_bit_1) ;
}
/*
Emission d'un octet
*/
uint8_t emissionOctet (unsigned char valeur)
{
uint8_t nbr = 0 ;
for (int i = 7 ; i >= 0 ; i--)
{
if (valeur & (1 << i)) { emissionBit (duree_periode_reelle_bit_1, duree_haut_reelle_bit_1) ; nbr++ ;}
else { emissionBit (duree_periode_reelle_bit_0, duree_haut_reelle_bit_0) ; }
}
// Bit 1 de fin
emissionBit (duree_periode_reelle_bit_1, duree_haut_reelle_bit_1) ;
return nbr ;
}
/*
Focntion de lecture du fichier de type MZF/M12/BIN
*/
void lectureFichierMZF ()
{
//unsigned long total = entree.fileSize () ;
unsigned char donnee ;
uint32_t checkSum ;
unsigned int i = 0 ;
unsigned int j = 0 ;
int front ;
unsigned char transfert_rapide [77] =
{
0x01, // Binaire
// Nom
0x54, 0x52, 0x41, 0x4E, 0x53, 0x46, 0x45, 0x52, 0x54, 0x20, 0x52, 0x41, 0x50, 0x49, 0x44, 0x45, 0x0D,
// Taille
0x03, 0x00,
// Adresse
0x00, 0xD4,
// Execution programme qui suit
0x00, 0xD4,
// Org $1108
0x01, 0x10, 0x00, // LD BC, Taille
0x21, 0x00, 0x12, // LD HL, Adresse
0x3E, 0x02, // LD A, $02 Front bas
0x32, 0x02, 0xE0, // LD ($E002), A
// A:
0xE5, // PUSH HL
0x21, 0x02, 0xE0, // LD HL, $E002
0x11, 0x08, 0x00, // LD DE, $0008 (D=$00 et E=$08) D=Valeur et E=Nbr bits
// B:
0x7E, // LD A, (HL)
0xE6, 0x10, // AND $10 (MOTOR ON : SENSE = 0 ?)
0x20, 0xFB, // JR NZ, B:
0xAF, // XOR A Front haut
0x77, // LD (HL), A DWRITE = 1
// C:
0x7E, // LD A, (HL)
0xE6, 0x10, // AND $10 (MOTOR ON : SENSE = 1 ?)
0x28, 0xFB, // JR Z, C:
0x7E, // LD A, (HL) recupere 1 bit de donnee (ordre bit 5,4,3,2,1,0,7,6)
0xE6, 0x20, // AND $20 recupere le bit de donnee
0xB2, // OR D
0x07, // RLCA
0x57, // LD D, A
0x3E, 0x02, // LD A, $02 Front bas
0x77, // LD (HL), A DWRITE = 0
0x1D, // DEC E
0x20, 0xE8, // JR NZ, B:
0xE1, // POP HL
0x72, // LD (HL), D Stockage de la valeur au bon endroit
0x0B, // DEC BC
0x79, // LD A, C
0xB0, // OR B
0x23, // INC HL
0x20, 0xD9, // JR NZ, A:
0xC3, 0xAD, 0x00 // JP Programme Fini on execute
} ;
uint8_t ordre [8] = { 32, 16, 8, 4, 2, 1, 128, 64 } ;
uint32_t position = 0x80 ;
uint8_t entete [128] ;
unsigned long t1, t2 ;
if ((mzf_type == MZF_BINAIRE) ||
(mzf_type == MZF_KUMA_COMPILER) ||
(mzf_type == MZF_BINAIRE_PURE) ||
(mzf_type == MZF_BINAIRE_MZF1)) { transfert_rapide_actif = true ; }
else { transfert_rapide_actif = false ; }
// Remplissage du tableau entete
if (transfert_rapide_actif == true)
{
// Entete transfert rapide
for (i = 0 ; i < 77 ; i++) { entete [i] = transfert_rapide [i] ; }
for (i = 77 ; i < 128 ; i++) { entete [i] = 0 ; }
}
entree.seekSet (0) ;
if (mzf_type == MZF_BINAIRE_PURE)
{
if (transfert_rapide_actif == false)
{
entete [0] = (uint8_t)(entree.read () & 0xFF) ;
for (i = 0 ; i < 128 ; i++) { entete [i] = 0x00 ; }
// Type BINAIRE OBJ
entete [0] = 0x01 ;
}
else { donnee = (uint8_t)(entree.read () & 0xFF) ; }
// Nom du fichier
for (i = 0 ; i < 12 ; i++) { entete [i+1] = strupr (nom_fichier_court [i]) ; }
for (i = 13 ; i < 18 ; i++) { entete [i] = 0x0D ; }
// Taille, Adresse, Execution
if (transfert_rapide_actif == false)
{
// Transfert Conventionnel
// Adresse
entete [20] = (uint8_t)(entree.read () & 0xFF) ;
entete [21] = (uint8_t)(entree.read () & 0xFF) ;
// Taille
uint16_t taille = entree_taille-7 ;
entete [18] = (uint8_t)(taille & 0x00FF) ;
entete [19] = (uint8_t)((taille >> 8) & 0x00FF) ;
entree.read () ;
entree.read () ;
// Execution
entete [22] = (uint8_t)(entree.read () & 0xFF) ;
entete [23] = (uint8_t)(entree.read () & 0xFF) ;
}
else
{
// Transfert Rapide
// Adresse
entete [28] = (uint8_t)(entree.read () & 0xFF) ;
entete [29] = (uint8_t)(entree.read () & 0xFF) ;
// Taille
uint16_t taille = entree_taille-7 ;
entete [25] = (uint8_t)(taille & 0x00FF) ;
entete [26] = (uint8_t)((taille >> 8) & 0x00FF) ;
entree.read () ;
entree.read () ;
// Execution
entete [75] = (uint8_t)(entree.read () & 0xFF) ;
entete [76] = (uint8_t)(entree.read () & 0xFF) ;
}
// Position des donnees
position = 0x07 ;
}
else if (mzf_type == MZF_BINAIRE_MZF1)
{
// Lecture des 4 premiers octets MZF1
for (i = 0 ; i < 4 ; i++) { entree.read () ; }
if (transfert_rapide_actif == false)
{
// Transfert Conventionnel
// Chargement de toute l'entete
for (i = 0 ; i < 128 ; i++) { entete [i] = (uint8_t)(entree.read () & 0xFF) ; }
}
else
{
// Transfert rapide
// Lecture type de fichier
entree.read () ;
// Nom du fichier
for (i = 1 ; i < 18 ; i++) { entete [i] = (uint8_t)(entree.read () & 0xFF) ; }
// Taille
entete [25] = (uint8_t)(entree.read () & 0xFF) ;
entete [26] = (uint8_t)(entree.read () & 0xFF) ;
// Adresse
entete [28] = (uint8_t)(entree.read () & 0xFF) ;
entete [29] = (uint8_t)(entree.read () & 0xFF) ;
// Execution
entete [75] = (uint8_t)(entree.read () & 0xFF) ;
entete [76] = (uint8_t)(entree.read () & 0xFF) ;
}
// Position des donnees
position = 0x84 ;
}
else // MZF/MZT/M12
{
if (transfert_rapide_actif == false)
{
// Transfert Conventionnel
// Chargement de toute l'entete
for (i = 0 ; i < 128 ; i++) { entete [i] = (uint8_t)(entree.read () & 0xFF) ; }
}
else
{
// Transfert rapide
// Type de programme
donnee = (uint8_t)(entree.read () & 0xFF) ;
// Nom du fichier
for (i = 1 ; i < 18 ; i++) { entete [i] = (uint8_t)(entree.read () & 0xFF) ; }
// Taille
entete [25] = (uint8_t)(entree.read () & 0xFF) ;
entete [26] = (uint8_t)(entree.read () & 0xFF) ;
// Adresse
entete [28] = (uint8_t)(entree.read () & 0xFF) ;
entete [29] = (uint8_t)(entree.read () & 0xFF) ;
// Execution
entete [75] = (uint8_t)(entree.read () & 0xFF) ;
entete [76] = (uint8_t)(entree.read () & 0xFF) ;
}
// Position des donnees
position = 0x80 ;
}
// Debut de lecture
lcd.firstPage () ;