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 - Spenceboy98
Pages: 1 ... 9 10 [11] 12 13 ... 39
152
« on: May 26, 2013, 01:38:06 pm »
Copying pre-installed image from RAM into filesystem. TI_OS_INSTALL_PRECHECK (5) TI_OS_INSTALL_VERIFYING_IMAGE (10) IMAGE: verifying file "/tmp/TI-Nspire.tco" IMAGE: file length does not match manifest TI_OS_INSTALL_VERIFYING_RESOURCE (95) Deleting file [/tmp/TI-Nspire.tco] TI_OS_INSTALL_FAILED TI_OS_INSTALL_IMAGE_INVALID Install failed!
It seems to me that the problem's answer is in the console output: you've got a crippled TI-OS image! Try a good one!
I don't have a good one.
153
« on: May 26, 2013, 01:33:05 pm »
Okay, this is what pops up in the console(now I use version 1.30):
Boot Loader Stage 1 (3.00.99) Build: 2010/9/9, 17:29:13 Copyright (c) 2006-2010 Texas Instruments Incorporated Using production keys
Last boot progress: 65
Available system memory: 33196 Checking for NAND: NAND Flash ID: ST Micro NAND256R3A SDRAM size: 32 MB Wakeup Event: ON. SDRAM memory test: Pass Clearing SDRAM...Done. Clocks: CPU = 132MHz AHB = 66MHz APB = 33MHz Clearing SDRAM...Done. Boot option: Normal
Read of bootdata failed
Loading DIAGS software...
Error reading/validating DIAGS image
Error loading DIAGS. Switching to BOOT2.
Loading BOOT2 software...
Error reading/validating BOOT2 image
Error loading BOOT2, looking for pre-installed images. Checking for DIAGS image in pre-install area. No DIAGS image found. Checking for BOOT2 image in pre-install area. Reading BOOT2 image from pre-install area. Erasing old BOOT2 image. Updating BOOT2 image. BOOT2 image has been updated. Finished loading pre-installed images.
Restarting in 1 Restarting now. Clearing SDRAM...Done. Reset
Boot Loader Stage 1 (3.00.99) Build: 2010/9/9, 17:29:13 Copyright (c) 2006-2010 Texas Instruments Incorporated Using production keys
Last boot progress: 65
Available system memory: 33196 Checking for NAND: NAND Flash ID: ST Micro NAND256R3A SDRAM size: 32 MB Wakeup Event: ON. SDRAM memory test: Pass Clearing SDRAM...Done. Clocks: CPU = 132MHz AHB = 66MHz APB = 33MHz Clearing SDRAM...Done. Boot option: Normal
Read of bootdata failed
Loading DIAGS software...
Error reading/validating DIAGS image
Error loading DIAGS. Switching to BOOT2.
Loading BOOT2 software...
98%99% BOOT1: loading complete (142 ticks), launching image.
Boot Loader Stage 2 (3.10.16) Build: 2011/7/6, 14:38:40 Copyright (c) 2006-2010 Texas Instruments Incorporated Using production keys
Clocks: CPU = 132MHz AHB = 66MHz APB = 33MHz Checking for NAND: NAND Flash ID: ST Micro NAND256R3A
Initializing graphics subsystem. Boot option: Normal Found a pre-installed Phoenix image. Waiting for load instructions. Copying pre-installed image into RAM. Erasing pre-installed image from filesystem area.
Initializing filesystem. Datalight Reliance v2.10.1150 Copyright (c) 2003-2006 Datalight, Inc. Datalight FlashFX Pro v3.00 Build 1358 Nucleus Edition for ARM9 Copyright (c) 1993-2006 Datalight, Inc. Patents: US#5860082, US#6260156. FFX: BBM Format found 0 bad blocks (IOError=0 Factory=0 Marked=0 Legacy=0) FlashFX: Formatting... One moment please 100% FlashFX: Format complete, Status=0x00000000 relFs_Format v2.10.1150 Copyright (c) 2003-2006 Datalight, Inc. Writing file system...100 Block size: 512 Total blocks: 57088 Used blocks: 63 Free blocks: 57025 Copying pre-installed image from RAM into filesystem. TI_OS_INSTALL_PRECHECK (5) TI_OS_INSTALL_VERIFYING_IMAGE (10) IMAGE: verifying file "/tmp/TI-Nspire.tco" IMAGE: file length does not match manifest TI_OS_INSTALL_VERIFYING_RESOURCE (95) Deleting file [/tmp/TI-Nspire.tco] TI_OS_INSTALL_FAILED TI_OS_INSTALL_IMAGE_INVALID Install failed!
154
« on: May 26, 2013, 01:15:09 pm »
It stays longer than 30-40 sec, and nothing is in the cmd.
It has to have something in the command line of kArmTI. By command line I do not mean the windows command line, but the one you have when pressing F10.
Nothing pops up when I press F10 and I try to do it manually Tools>Console it does nothing.
155
« on: May 25, 2013, 10:32:39 pm »
*BUMP* I'm experimenting with trying to get it to save BMP. The problem is that I try to open it and it says that it is corrupt. Here is my saving code: void saveBMP(char *filename, color_t *data, int width, int height){ BMPHEAD bh; memset ((char *)&bh,0,sizeof(BMPHEAD)); /* sets everything to 0 */ memcpy (bh.id,"BM",2); bh.reserved[0] = 0; bh.reserved[1] = 0; bh.headersize = 54L; bh.infoSize = 0x28L; bh.width = width; bh.depth = height; bh.biPlanes = 1; bh.bits = 24; bh.biCompression = 0L; int bytesPerLine;
bytesPerLine = bh.width * 3; /* (for 24 bit images) */ /* round up to a dword boundary */ if (bytesPerLine & 0x0003) { bytesPerLine |= 0x0003; ++bytesPerLine; } bh.filesize=bh.headersize+(long)bytesPerLine*bh.depth; int size = bh.headersize+(long)bytesPerLine*bh.depth; char * PATH; PATH = alloca(strlen("\\\\fls0\\")+strlen1(filename)+strlen(".bmp")+1); strcpy(PATH, "\\\\fls0\\"); strcat(PATH, filename); strcat(PATH, ".bmp"); unsigned short * pFile = alloca(2*(strlen(PATH)+1)); Bfile_StrToName_ncpy(pFile, (unsigned char*)PATH, strlen(PATH)+1); Bfile_CreateEntry_OS(pFile, CREATEMODE_FILE, &size); int hFile = Bfile_OpenFile_OS(pFile, 2); Bfile_WriteFile_OS(hFile, &bh, sizeof(bh)); char *linebuf; linebuf = (char *) malloc(bytesPerLine*sizeof(char)); if (linebuf == NULL){ Bfile_CloseFile_OS(hFile); return; } int line; for (line = height; line >= 0; line --){ for(int i = 0; i < width; i++){ linebuf[i] = data[line*width+i]; } Bfile_WriteFile_OS(hFile, linebuf, sizeof(linebuf)); } Bfile_CloseFile_OS(hFile); free(linebuf); } Using this website for basis: http://www.siggraph.org/education/materials/HyperVis/asp_data/compimag/bmpfile.htmI don't think loading the data is going correctly. Can someone please help?
156
« on: May 25, 2013, 06:50:00 pm »
Did you try it again? You can't do anything wrong with boot1 and boot2.
I did and it just got stuck and did nothing when I pressed i or enter.
What do you mean by "stuck" ? Because first install is long, like 30~40 seconds. Open up the terminal and se what it says.
It stays longer than 30-40 sec, and nothing is in the cmd.
157
« on: May 25, 2013, 06:44:28 pm »
Did you try it again? You can't do anything wrong with boot1 and boot2.
I did and it just got stuck and did nothing when I pressed i or enter. : Btw, is there supposed to be anything popping up in the cmd(because there isn't);
159
« on: May 25, 2013, 03:44:51 pm »
*BUMP* I needs some CX testers please.
160
« on: May 25, 2013, 12:44:57 am »
*BUMP* Updates: Faster image saving and loading. I got it to load a new image. More screenshots(doodles): Zoomed:
161
« on: May 24, 2013, 07:03:39 pm »
Hey SpenceBoy98,
Looking only at the command line, obviously it should work! I have some questions/suggestions you might want to consider to help debugging the issue: 1. How did you get 'Boot1cx.img' and 'Boot2cx.img' files? With 'Polydumper', i assume. From the picture you've posted we cannot see the file sizes, what would help to ascertain if there's nothing wrong with that step. 2. Assuming these 2 boot files are correct, then you can use them to start the original TI-nspire emulator (nspire_emu) by Goplat. (The command line is the same, btw). 3. If 'nspire_emu' starts fine, then it's a 'kArmTI' bug, definetely (it can happen!). If not, then you have a problem with the boot files. Try these suggestions and let us know about it. Hope you'll fix it soon. Cheers.
I think someone sent me a pm with the boot1 and I think I got boot2 on TI-Planet. I can't PolyDump because I don't have an Nspire CX.
162
« on: May 24, 2013, 05:19:42 pm »
while(teenager) { if(athome){ if(withcompany){ beLazy(); getOnComputer(); } else { beLazy(); getOnComputer(); } } else if(atschool) { school(); } else if(atstore && withmom) { askForCandy(); } else { doNothing(); } }
163
« on: May 24, 2013, 04:51:23 pm »
Oh, here's my boot options:
164
« on: May 24, 2013, 04:45:06 pm »
How about now(attached)? The reason it is bigger than what I showed is because I made it have the color FAIL, which made it a lot bigger.
165
« on: May 23, 2013, 06:12:00 pm »
I need to take a look at your boot option to help you.
Boot option? What do you mean?
Pages: 1 ... 9 10 [11] 12 13 ... 39
|