Planète Casio - Autres questions - Flux RSS http://www.planet-casio.com Programmes Casio, Jeux, Cours pour Calculatrices Casio fr-FR https://www.planet-casio.com/images/logo.gif Planète Casio - Autres questions - Flux RSS http://www.planet-casio.com 55 50 Programmes Casio, Jeux, Cours pour Calculatrices Casio. Wed, 30 Apr 2025 22:11:17 GMT Wed, 30 Apr 2025 22:11:17 GMT contact@planet-casio.com (Planet Casio) contact@planet-casio.com (Planet Casio) 5 Modding Casio FX-9860 GIII https://www.planet-casio.com/Fr/forums/topic18735--.html Bonjour. J'ai un Casio FX-9860 GIII et j'ai commencé à utiliser le langage de programmation de Casio pour faire des jeux. Je voulais faire une sorte de jeu multijoueur câblé ou au moins un système de transfert d'informations en continu en utilisant les fonctions Send() et Receive(). J'ai vu dans un forum de 2002 que ce n'était pas possible car le signal d'envoi a une poignée de main de 5 bits alors que le signal de réception a une poignée de main de 7 bits. Existe-t-il un moyen simple de contourner ce problème ou de changer le système de handshake ? Mon, 28 Apr 2025 11:02:37 +0200 gint_setrestart(1) not working https://www.planet-casio.com/Fr/forums/topic18734--.html at the start of the program, i call gint_setrestart(1), then in a while loop i quit with gint_osmenu(); return 0; but when i get back to the program it isnt restarted and just quits on any button press. starting a different app and going back restarts it Fri, 25 Apr 2025 19:42:54 +0200 action replay sur prizoop https://www.planet-casio.com/Fr/forums/topic18731--.html Bonjour, quel que soit la version d'une rom d'action replay sur prizoop, ca ne fonctionjne pas. est ce que qqn sait si il y en a une qui fonctionne? merci d'avance Thu, 24 Apr 2025 12:30:02 +0200 Clavier USB sur une CASIO ? https://www.planet-casio.com/Fr/forums/topic18724--.html Bonjour tout le monde... Y'a t'il moyen de connecter un clavier USB directement sur une CASIO ? J'avais ça sur ma TI89 et c'était vraiment pratique pour la programmation... Comme il y a un port USB sur la 9750GIII, peut-être qu'il y a un petit programme qui traine à quelque part ? Merci! Mon, 21 Apr 2025 17:21:49 +0200 program quitting with any button press https://www.planet-casio.com/Fr/forums/topic18711--.html code: int main(void) { char dir[2] = {1,0}; unsigned char length = 0; unsigned char snake[256][2] = {{8,8}}; gdb_start_on_exception(); dclear(C_WHITE); while(1){ clearevents(); if(keydown(KEY_MENU)){ gint_osmenu(); } if(keydown(KEY_UP)){ dir[0] = 0; dir[1] = 1; } for(int pos=254; pos>=0; pos--){ snake[pos+1][0] = snake[0]; snake[pos+1][1] = snake[1]; } dupdate(); } } for a few moments after i start the program, any button i press quits it, after that it works normally. would really appreciate some help i dont know why it happens at all Thu, 10 Apr 2025 20:24:18 +0200 What is the gray engine https://www.planet-casio.com/Fr/forums/topic18710--.html found it in the gint library what does it do? make different shades of gray on a monochrome display? or is it for color displays? dont want to somehow break my calculator with it Wed, 09 Apr 2025 20:20:17 +0200 blank screen on program startup https://www.planet-casio.com/Fr/forums/topic18709--.html code: #include <gint/display.h> #include <gint/keyboard.h> #include <stdio.h> #include <gint/gdb.h> int main(void) { char dir[2] = {1,0}; unsigned char length = 0; unsigned char snake[256][2] = {{8,8}}; gdb_start_on_exception(); dclear(C_WHITE); while(1){ if(keydown(0x84)){ break; } if(keydown(0x86)){ dir[0] = 0; dir[1] = 1; } for(int pos=254; pos>=0; pos--){ snake[pos+1][0] = snake[0]; snake[pos+1][1] = snake[1]; } drect_border(snake[0]*8, snake[1]*8, snake[0]*8+8, snake[1]*8+8,1,0, C_WHITE); snake[0][0] = snake[1][0]+dir[0]; snake[0][1] = snake[1][1]+dir[1]; drect_border(snake[0][0]*8, snake[0][1]*8, snake[0][0]*8+8, snake[0][1]*8+8, 1,0,C_BLACK); dupdate(); } getkey(); return 1; } When i run this program on my calculator (9860giii) it just shows a blank screen and i have to manually restart the calculator I suppose im doing something wrong in the loop but i dont know what Wed, 09 Apr 2025 16:26:04 +0200 9860giii (.g1a) program debug https://www.planet-casio.com/Fr/forums/topic18704--.html how do i debug .g1a file (made in fxsdk)? i tried to put it in the old casio sdk and fx-manager plus but i cant Mon, 07 Apr 2025 22:07:10 +0200 OS on fx-CG50 https://www.planet-casio.com/Fr/forums/topic18703--.html I want to edit some parts of the OS in the fx-CG50 (not AU) and wanted to know what is the smallest modifications I can make without bricking my calculator would something like changing 1 letter of text in the OS code enough to brick the calculator? I want to actually try this myself and know that fxos is the best way to do this but where do I start exactly I know that I must load in the OS as binary but then what do I need to do to edit a piece of text of OS safely and put it back in the calculator without bricking it or is there something else I need to use and what's the best OS to edit I thought it would be 3.60 because I believe this is the one there is most information available for I believe. I have also tried using Ghidra but it left me confused ,as I'm not the best with it, with lots of random characters that I had no clue what to do with when I auto analysed the OS 3.60 binary so if any one knows how to use Ghidra for this stuff any help on it would be appreciated. Thank you to any help! :) Mon, 07 Apr 2025 19:02:40 +0200 stack memory and getkey() https://www.planet-casio.com/Fr/forums/topic18697--.html I'm trying to learn the casio SDK to make some games for my 9860giii but when i use a while loop and don't put GetKey() inside it, i get error 28 (out of stack memory) I could just use getkey to avoid this but it has to wait for input and i am trying to make a real-time game so i can't i'm sorry for posting so much here but i am really hopeless and really want to learn the library Sat, 05 Apr 2025 20:55:05 +0200