What circumstances did that one fail under?ronmcrae wrote:I recently had one NXT that was stuck clicking in Samba mode. As far as getting firmware onto that brick, nothing I did worked, and I did at least all of what has been discussed above.
Search found 32 matches
- 08 Nov 2011, 21:52
- Forum: Mindstorms Software
- Topic: Error -1073807298 when updating the firmware
- Replies: 14
- Views: 19241
Re: Error -1073807298 when updating the firmware
- 08 Nov 2011, 15:36
- Forum: Mindstorms Software
- Topic: Error -1073807298 when updating the firmware
- Replies: 14
- Views: 19241
Re: Error -1073807298 when updating the firmware
You could also try installing the LeJOS firmware on the NXT. That uses a really different firmware loader. If BricxCC and NXT-G fail, I kinda doubt that this will work either, but it's worth a try.
- 14 Oct 2011, 14:13
- Forum: Open Discussion
- Topic: NXT run program on launch
- Replies: 16
- Views: 21308
Re: NXT run program on launch
~Matt: We were both right and both wrong, I guess. I tested with the EFW and stock firmware , and "! Autorun.rxe" doesn't work. :oops: However, you have to use "! Startup .rxe " . Anything else fails. And yes, the EFW is definitely required. If you are using a custom FW, is it th...
- 14 Oct 2011, 01:31
- Forum: Open Discussion
- Topic: NXT run program on launch
- Replies: 16
- Views: 21308
Re: NXT run program on launch
I'm 100% certain that if you name it "! Startup" (don't worry about the extension, but it needs to be a capital "S"), that it will work fine. I have done it a zillion times. :shock: What firmware do you use? It doesn't work for me. (custom firmware build almost identical to stoc...
- 14 Oct 2011, 01:09
- Forum: Open Discussion
- Topic: NXT run program on launch
- Replies: 16
- Views: 21308
Re: NXT run program on launch
I don't think so, at least I can't see why it would matter. No matter what lego FW you are using, it should play ! Startup as soon as you turn it on (normally a sound file). Oohhhh, I just realized something: Everyone said "! Startup" , but like you just pointed out, that's a sound file. ...
- 13 Oct 2011, 23:42
- Forum: Open Discussion
- Topic: NXT run program on launch
- Replies: 16
- Views: 21308
Re: NXT run program on launch
What firmware does your NXT have? I think this only works with the NBC/NXC enhanced firmware.
- 21 Jul 2011, 21:50
- Forum: Mindstorms Software
- Topic: Why does this crash?
- Replies: 4
- Views: 5419
Re: Why does this crash?
Oh... Thanks.
The documentation I looked at was the NXC guide that came with BricxCC.
The documentation I looked at was the NXC guide that came with BricxCC.
- 21 Jul 2011, 20:18
- Forum: Mindstorms Software
- Topic: Why does this crash?
- Replies: 4
- Views: 5419
Re: Why does this crash?
Well, you've said it yourself, so I'm stating the obvious: Have you checked if joyvals has the correct format? What happens if an empty or a malformed message arrives? Empty / malformed messages shouldn't make a difference, since the program only does some math on the array and stores the result. I...
- 21 Jul 2011, 18:42
- Forum: Mindstorms Software
- Topic: Why does this crash?
- Replies: 4
- Views: 5419
Why does this crash?
Hi, I'm having a problem with a NXC program I'm writing. Here's the code: task main() { char BOXNO = 0; int b; short a1, a2, a3, a4, a5, a6, a7, a8; char joyvals[60]; while (1) { ReceiveMessage(BOXNO, true, joyvals); b = (joyvals[0] << 24 | joyvals[1] << 16 | joyvals[2] << 8 | joyvals[3]) - 1; a1 = ...
- 19 Jul 2011, 15:12
- Forum: Mindstorms Hardware
- Topic: Update rate of NXT screen
- Replies: 36
- Views: 36004
Re: Update rate of NXT screen
As far as motion is concerned, I'm not sure a 70hz refresh rate is much better than 10hz, because the pixels respond so slowly. A sprite moving to keep pace with a 70hz refresh will be severely blurred. As Aswin0 said though, that's good for static grayscale.