π
<-
Chat plein-écran
[^]

USB Support on the TI 89

Programmation et implémentation d'algorithmes.

USB Support on the TI 89

Unread postby Michael0x18 » 17 Mar 2021, 17:37

At this point, I'm wondering if it's possible to add some functionality similar to Cesium's flash drive support and USB8x for the z80 series to the TI-89. (Titanium, because it has a USB port.)
Specifically, I'm wondering if it's possible to "mount" disks as folders somehow.
Of course, I'd be writing most of it, using BrandonW and Lionel's Linky as a starting point.

Any thoughts?
User avatar
Michael0x18
Niveau 3: MH (Membre Habitué)
Niveau 3: MH (Membre Habitué)
Level up: 36%
 
Posts: 12
Joined: 07 Oct 2020, 17:10
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: USB Support on the TI 89

Unread postby critor » 17 Mar 2021, 18:22

Linky is a TI-89 Titanium version of usb8x :
viewtopic.php?f=41&t=11769#p139751
Image
User avatar
critorAdmin
Niveau 19: CU (Créateur Universel)
Niveau 19: CU (Créateur Universel)
Level up: 42.5%
 
Posts: 41498
Images: 14695
Joined: 25 Oct 2008, 00:00
Location: Montpellier
Gender: Male
Calculator(s):
MyCalcs profile
YouTube: critor3000
Twitter: critor2000
GitHub: critor

Re: USB Support on the TI 89

Unread postby Lionel Debroux » 18 Mar 2021, 19:18

Indeed, you had already found the starting point you need to use: Linky. All I did in Linky was fill in the keyboard detection and mapping code, as well as make it easier to switch between HID keyboard and HID mouse modes.
Membre de la TI-Chess Team.
Co-mainteneur de GCC4TI (documentation en ligne de GCC4TI), TIEmu et TILP.
User avatar
Lionel DebrouxSuper Modo
Niveau 14: CI (Calculateur de l'Infini)
Niveau 14: CI (Calculateur de l'Infini)
Level up: 11.2%
 
Posts: 6859
Joined: 23 Dec 2009, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Class: -
GitHub: debrouxl

Re: USB Support on the TI 89

Unread postby Michael0x18 » 18 Mar 2021, 19:48

Yeah. Tari was nice enough to mirror BrandonW's repo on github (instead of SVN.)
If you recall, I asked you for the binaries a while back because I wanted to see what it did, but now that's unnecessary because I managed to build GCC4TI (I can't seem to find the KDE3 stuff, so I can't use KTIGCC, though. They're not available from apt.)
I already started looking at the specs for FAT32, and it's a mess. There are a boatload of different versions, from different operating systems. And there's the fact that most consumer flash memory is hideous and just the cheapest possible thing.
(Hamming codes, multi-bit cells, and the like)
User avatar
Michael0x18
Niveau 3: MH (Membre Habitué)
Niveau 3: MH (Membre Habitué)
Level up: 36%
 
Posts: 12
Joined: 07 Oct 2020, 17:10
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: USB Support on the TI 89

Unread postby Lionel Debroux » 20 Mar 2021, 13:30

Yes, making a good implementation of FAT12/16/32 is hard. I suppose you could leverage one of the existing ones... once you've found one which has sufficient portability, reliability, etc.

As for KTIGCC: just do what virtually everybody has done in the past decade or so, don't bother with this thing :)
Besides its adherence to an unpopular, heavyweight, poorly portable desktop environment and application framework which breaks API compatibility between minor releases, it suffers from both significant implementation issues - the code's quality is terrible, making it unmaintainable - and the fundamental design issue of trying to reimplement verbatim the... peculiarities... of the Delphi IDE, instead of fixing them.
Membre de la TI-Chess Team.
Co-mainteneur de GCC4TI (documentation en ligne de GCC4TI), TIEmu et TILP.
User avatar
Lionel DebrouxSuper Modo
Niveau 14: CI (Calculateur de l'Infini)
Niveau 14: CI (Calculateur de l'Infini)
Level up: 11.2%
 
Posts: 6859
Joined: 23 Dec 2009, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Class: -
GitHub: debrouxl

Re: USB Support on the TI 89

Unread postby Michael0x18 » 20 Mar 2021, 20:39

After some searching online, I've found a couple possible starting points.
Unfortunately, even after examining the Linky source code for about an hour yesterday, I still don't entirely understand how it works.
One of the criteria for the starting/example implementation is that it has to be released under a GPL-compatible license. (There's something wrong with writing a proprietary program for a graphing calculator, even more so than a normal computer, because they're supposed to be learning tools.)
As for KTIGCC, whatever. I'll stick with my current setup of using tmux.
User avatar
Michael0x18
Niveau 3: MH (Membre Habitué)
Niveau 3: MH (Membre Habitué)
Level up: 36%
 
Posts: 12
Joined: 07 Oct 2020, 17:10
Gender: Not specified
Calculator(s):
MyCalcs profile

Re: USB Support on the TI 89

Unread postby Lionel Debroux » 20 Mar 2021, 21:15

Unfortunately, even after examining the Linky source code for about an hour yesterday, I still don't entirely understand how it works.

Neither do I :)
Membre de la TI-Chess Team.
Co-mainteneur de GCC4TI (documentation en ligne de GCC4TI), TIEmu et TILP.
User avatar
Lionel DebrouxSuper Modo
Niveau 14: CI (Calculateur de l'Infini)
Niveau 14: CI (Calculateur de l'Infini)
Level up: 11.2%
 
Posts: 6859
Joined: 23 Dec 2009, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Class: -
GitHub: debrouxl

Re: USB Support on the TI 89

Unread postby Lionel Debroux » 23 Mar 2021, 08:30

The USB controller is indeed memory-mapped, in the 7100xx range.
Membre de la TI-Chess Team.
Co-mainteneur de GCC4TI (documentation en ligne de GCC4TI), TIEmu et TILP.
User avatar
Lionel DebrouxSuper Modo
Niveau 14: CI (Calculateur de l'Infini)
Niveau 14: CI (Calculateur de l'Infini)
Level up: 11.2%
 
Posts: 6859
Joined: 23 Dec 2009, 00:00
Location: France
Gender: Male
Calculator(s):
MyCalcs profile
Class: -
GitHub: debrouxl

Re: USB Support on the TI 89

Unread postby Michael0x18 » 27 Mar 2021, 00:17

Well, I'm going to take a break from this project to write an IDE that I can use to make it.
The progress thread is over on Cemetech:https://www.cemetech.net/forum/viewtopic.php?p=292032#292032
User avatar
Michael0x18
Niveau 3: MH (Membre Habitué)
Niveau 3: MH (Membre Habitué)
Level up: 36%
 
Posts: 12
Joined: 07 Oct 2020, 17:10
Gender: Not specified
Calculator(s):
MyCalcs profile


Return to Programmation

Who is online

Users browsing this forum: No registered users and 37 guests

-
Search
-
Social TI-Planet
-
Featured topics
Comparaisons des meilleurs prix pour acheter sa calculatrice !
Aidez la communauté à documenter les révisions matérielles en listant vos calculatrices graphiques !
Phi NumWorks jailbreak
123
-
Donations / Premium
For more contests, prizes, reviews, helping us pay the server and domains...
Donate
Discover the the advantages of a donor account !
JoinRejoignez the donors and/or premium!les donateurs et/ou premium !


Partner and ad
Notre partenaire Jarrety Calculatrices à acheter chez Calcuso
-
Stats.
1681 utilisateurs:
>1640 invités
>36 membres
>5 robots
Record simultané (sur 6 mois):
6892 utilisateurs (le 07/06/2017)
-
Other interesting websites
Texas Instruments Education
Global | France
 (English / Français)
Banque de programmes TI
ticalc.org
 (English)
La communauté TI-82
tout82.free.fr
 (Français)