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. Mon, 12 May 2025 14:48:38 GMT Mon, 12 May 2025 14:48:38 GMT contact@planet-casio.com (Planet Casio) contact@planet-casio.com (Planet Casio) 5 Showing battery within add in https://www.planet-casio.com/Fr/forums/topic18750--.html I am currently making my add in and wanted to show the battery status with the separation line like the calculator usually does in any other built in app and some other add ins but I dont know how to do this does anyone know what #include gint directive I need for it or is there is a different way of doing this entirely Any help appreciated Thank you! Thu, 08 May 2025 23:03:37 +0200 Trouble Building g3a Add-in with gint + GiteaPC + CMake https://www.planet-casio.com/Fr/forums/topic18744--.html Hi everyone, I'm currently trying to create a .g3a add-in for the Casio fx-CG50 using gint, but I'm running into repeated issues during the build process. I followed all documented steps as carefully as possible and I am on WSL for Windows. Here’s exactly what I’ve done so far, including the commands and any errors I got: First I installed base dependencies with no errors sudo apt update sudo apt install curl git python3 build-essential pkg-config Installed GiteaPC and runs without issues curl "https://git.planet-casio.com/Lephenixnoir/GiteaPC/raw/branch/master/install.sh" -o /tmp/giteapc-install.sh bash /tmp/giteapc-install.sh Installed the toolchain using GiteaPC giteapc install Lephenixnoir/fxsdk Lephenixnoir/sh-elf-binutils Lephenixnoir/sh-elf-gcc Lephenixnoir/sh-elf-gdb Which first failed with error: error 2 in command: gmake -f /home/<username>/.local/share/giteapc/Lephenixnoir/fxsdk/giteapc.make configure /bin/sh: 1: cmake: not found So I ran sudo apt install cmake After installing CMake, the above **giteapc install** worked correctly Installed libraries required by gint with no errors giteapc install Lephenixnoir/OpenLibm Vhex-Kernel-Core/fxlibc giteapc install Lephenixnoir/sh-elf-gcc giteapc install Lephenixnoir/gint Lephenixnoir/libprof Verified installed packages with no issues giteapc list Installed additional system libraries (for completeness) no issues again sudo apt install cmake libpng-dev libusb-1.0-0-dev libglib2.0-dev libncurses-dev libsdl2-dev Created my test project nano main.c nano CMakeLists.txt nano manifest.toml Made a build directory and ran cmake mkdir build cd build cmake .. make Which returned this error CMake Error at CMakeLists.txt:4 (find_package): By not providing "FindGint.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package configuration file provided by "Gint", but CMake did not find one. Could not find a package configuration file provided by "Gint" with any of the following names: GintConfig.cmake gint-config.cmake I tried pointing CMake to the directory using this command but the error persisted cmake .. -DGint_DIR=$HOME/.local/share/giteapc/dev/Lephenixnoir/gint I also ran this it returned no results, which I believe confirms that gint does not provide a GintConfig.cmake file, so CMake cannot find it this way. find ~/.local/share/giteapc/dev/Lephenixnoir/gint -name "GintConfig.cmake" I would really appreciate if anyone could let me know if I am doing something entirely wrong or some steps are missing or if this is the right way to get fxsdk and make my own g3a file I am new to this so Any help is greatly appreciated Thank you! Mon, 05 May 2025 14:11:47 +0200 What is latest KhiCAS g1a file? https://www.planet-casio.com/Fr/forums/topic18737--.html I downloaded khicasen.g1a from https://www-fourier.ujf-grenoble.fr/~parisse/casio/khicasioen.html. But there is plot instead of view on F3 key. And pressing F3(plot) gives only reserved. Documentation says F3(View) (On "7 The 2d editor.") Is documentation outdated? Or is g1a file outdated? Fri, 02 May 2025 13:01:34 +0200 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