Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - helder7

Pages: 1 ... 4 5 [6] 7 8 ... 11
76
Hello, i tried convert sprites with cemetech sourcecoder, for use in an application developed with miniSDK

to show images, i used the routine CopySprite by Kerm:

Code: [Select]
void CopySprite(const void* datar, int x, int y, int width, int height) {
   color_t*data = (color_t*) datar;
   color_t* VRAM = (color_t*)0xA8000000;
   VRAM += LCD_WIDTH_PX*y + x;
   for(int j=y; j<y+height; j++) {
      for(int i=x; i<x+width; i++) {
         *(VRAM++) = *(data++);
     }
     VRAM += LCD_WIDTH_PX-width;
   }
}

I called the image with the following function

Code: [Select]
void xxx() {

    Bdisp_EnableColor(1);
    CopySprite(spritename, 0, 0, 40, 40);
    Bdisp_PutDisp_DD();
}

but, when i compile the source, the sdk gives me the following errors:


Code: [Select]
Execute: C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT.INI
"C:\Users\HELDER\Documents\CASIO\MiniSDK\BIN\SHCPP.EXE" -SUB=TEMP.TXT INSIGHT 000E12F2
C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT\INSIGHT.CPP(29) : C5020 (E) Identifier "color_t" is undefined
C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT\INSIGHT.CPP(29) : C5020 (E) Identifier "data" is undefined
C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT\INSIGHT.CPP(29) : C5029 (E) Expected an expression
C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT\INSIGHT.CPP(29) : C5065 (E) Expected a ";"
C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT\INSIGHT.CPP(30) : C5020 (E) Identifier "VRAM" is undefined
C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT\INSIGHT.CPP(30) : C5029 (E) Expected an expression
C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT\INSIGHT.CPP(30) : C5065 (E) Expected a ";"
C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT\INSIGHT.CPP(31) : C5020 (E) Identifier "LCD_WIDTH_PX" is undefined
C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT\INSIGHT.CPP(269) : C5192 (W) Unrecognized character escape sequence
C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT\INSIGHT.CPP(365) : C5020 (E) Identifier "Bdisp_EnableColor" is undefined
C:\Users\HELDER\Documents\CASIO\MiniSDK\projects\INSIGHT\INSIGHT.CPP(393) : C5020 (E) Identifier "Bdisp_EnableColor" is undefined
Dependency: "C:\Users\HELDER\Documents\CASIO\MiniSDK\objects\INSIGHT.obj" does not exist!
Dependency: "C:\Users\HELDER\Documents\CASIO\MiniSDK\objects\INSIGHT.obj" does not exist!
Ready

someone can help me?

77
Casio Calculators / Re: Pack all Addins for fx9860 and Prizm
« on: April 01, 2012, 02:45:39 pm »
Hey, the download link work!
HERE[Url]
GO FOR THEM!
yes i know, but now I have no screenshots, description or name of the author of files

I think the administrator has not paid the bill to the server or the site was hacked and blocked by the host, because of this value -> (current value: 1)

78
Casio Calculators / Re: Pack all Addins for fx9860 and Prizm
« on: April 01, 2012, 09:15:37 am »
wtf, ck is not working, forum and downloads are not open

Bad Q02:User 'XXXXXXXX' has exceeded the 'max_questions' resource (current value: 1)

this week I had plans to back up files that were missing in my new website :(

79
Casio Calculators / Re: Hacking into the .g3p/b format
« on: March 07, 2012, 06:54:25 pm »
I made some interesting discoveries

the .g3p/g3b file save the vwindow, xmin, xmax...





80
Casio Calculators / Re: Pack all Addins for fx9860 and Prizm
« on: March 06, 2012, 05:16:58 pm »
cool, i had found the files directory -> DELETED

and in this directory there are one DRUGLORD.rar :)

the 404 broken link: DELETED
working link: DELETED

there is only difference of uppercase and lowercase in the file name


81
Casio Calculators / Re: Pack all Addins for fx9860 and Prizm
« on: March 05, 2012, 05:02:04 pm »
anywone can download this? -> DELETED

82
Casio Calculators / Re: Casio Prizm skinning promotion
« on: March 01, 2012, 11:31:26 am »
my skinit:


83
Casio Calculators / Re: Audio player for Casio Prizm
« on: February 29, 2012, 02:33:01 pm »
hi i have a THEORY (only theory) to improve audio player

the ea-200/e-cons2 using the communication system by cable sb-62 (calc-to-calc cable), and is compatible with the Prizm



it may be possible to find another syscall in this app to improve sound quality or write to RX pin

EDITED:

EA-200 have sound & speaker, calculator group link, etc  :o


http://edu.casio.com/products/peripheral/ea200/

84
Casio Calculators / Re: Video player for Casio Prizm
« on: February 29, 2012, 10:03:14 am »
The chinese MP4 producers use use formats AMV and MTV (more info about this formats here -> http://en.wikipedia.org/wiki/Chinese_MP4/MTV_Player)

the processor of these mp4 video players is much weaker than that of the prizm

one decoder in google code (http://code.google.com/p/amv-codec-tools/)

what do you think?



85
Well since GBC emulator is possible on the Nspire, shouldn't it be not very hard to do on a Prizm?
Or is it a whole different level?
[side note]
leafy u need 120 more posts

nspire use arm9 processor, prizm use sh3 processor

there are some pocket pcs (old pdas) that use this processor (sh3)

if is possible port windowsCE to prizm we have emulators, games, office, etc...

86
Casio Calculators / Re: FXTerm - VT100 terminal emulator for Casio fx cg
« on: February 26, 2012, 12:31:19 pm »
cool, i have connected my prizm with my otheros++ in my ps3

awesome martin poupe

=============
ps: the app icon is quite confusing, in the menu

can you recompile the app with this icon?



you can download icon package at mediafire -> http://www.mediafire.com/?4nc5e27ke847pac

I made an icon compatible with simon sdk (bmp 8 bits, low quality), and other compatible with cemetechSDK (bmp 24 bits, high quality)...

87
Casio Calculators / Re: Audio player for Casio Prizm
« on: February 23, 2012, 07:15:11 pm »
only one ear gives sound, like fx9860?

the volume is the same as 9860 or is lower?


I can only test the player at the weekend, because now I have no headset compatible.



88
Casio Calculators / Re: Video player for Casio Prizm
« on: February 22, 2012, 06:02:30 pm »
converted video demo (and calculator vs pc): http://videobam.com/GkSxj

Download: http://www.mediafire.com/?5zto4jlbd4k9tjf

89
Casio Calculators / Re: Video player for Casio Prizm
« on: February 21, 2012, 07:59:11 pm »
Oh. How about I send the video download to you?
No problem. Host the video in mediafire and give me the link

Now is 1:00 in my countrie, i go to sleep. Tomorrow I will convert the video

90
Casio Calculators / Re: Video player for Casio Prizm
« on: February 21, 2012, 07:26:40 pm »
Can you do it in photoshop?
No :( Photoshop doesnt have batch compression functions

Pages: 1 ... 4 5 [6] 7 8 ... 11