Unoffical empeg BBS

Quick Links: Empeg FAQ | RioCar.Org | Hijack | BigDisk Builder | jEmplode | emphatic
Repairs: Repairs

Topic Options
#28169 - 15/03/2001 21:29 This is weird!
tonyc
carpal tunnel

Registered: 27/06/1999
Posts: 7058
Loc: Pittsburgh, PA
I've been doing some kernel tweaking (IR related) and this morning when I put my Empeg in my car, whenever I used the remote, there was a slight (50 ms or less) "delay" and skip in the music before the remote worked. Also, whenever I used the front panel buttons, they got "stuck" down, not physically, but one click of the button would keep it stuck in fast forward or rewind, whatever button I hit was "stuck" according to the kernel. I figured I had a bug, wouldn't be the first time...

So I bring it inside tonight, plug it in, and everything works FINE. No delay, no music skip, remote response is instantaneous, and the front panel buttons work FINE.

What the HECK is going on here? I can post the code I've been working on, but what could possibly be different that is making my kernel code behave totally different in the car? It's not like the code is looking at the power state, at least not that I've seen.

I'm stumped... Some of this kernel hacking is new to me, I'm a C systems programmer, but this is my first venture into Linux kernel land. Weird territory. :)

Incidentally what I'm trying to do is enable a "modifier key" function with one of the steering wheel remote's buttons, as I had stated in another post. It's working at home and in the car, but needs a couple tweaks. I don't get this goofy bug though!!!

-Tony
MkII #554
_________________________
- Tony C
my empeg stuff

Top
#28170 - 16/03/2001 04:48 Re: This is weird! [Re: tonyc]
Roger
carpal tunnel

Registered: 18/01/2000
Posts: 5682
Loc: London, UK
Are you tracing anything to the serial port in your modified kernel (e.g. using printk)? The player has the ports set to 4800 baud (IIRC) in the car, as opposed to 115K at home, which can cause an apreciable slowdown.

Roger - not necessarily speaking for empeg
_________________________
-- roger

Top
#28171 - 16/03/2001 07:31 Re: This is weird! [Re: Roger]
tonyc
carpal tunnel

Registered: 27/06/1999
Posts: 7058
Loc: Pittsburgh, PA
Ah HA! That's got to be it. I have a bunch of printk traces in there. I'll try removing those and see how things work. How does one change the docked serial rate? Is it a config change or is there some #define I can change somewhere?


-Tony
MkII #554
_________________________
- Tony C
my empeg stuff

Top
#28172 - 16/03/2001 07:40 Re: This is weird! [Re: tonyc]
kim
member

Registered: 21/07/1999
Posts: 140
Loc: Helsinki, Finland
How does one change the docked serial rate? Is it a config change or is there some #define I can change somewhere?

Check your /empeg/var/config.ini file. There should be [Serial] block which can have a car_rate=115200 variable.

Kim


Top
#28173 - 16/03/2001 08:52 Re: This is weird! [Re: kim]
tonyc
carpal tunnel

Registered: 27/06/1999
Posts: 7058
Loc: Pittsburgh, PA
I figured it was something like that. Thanks.

-Tony
MkII #554
_________________________
- Tony C
my empeg stuff

Top
#28174 - 24/03/2001 01:59 Re: This is weird! [Re: Roger]
altman
carpal tunnel

Registered: 19/05/1999
Posts: 3457
Loc: Palo Alto, CA
The reason this causes a problem is because printk disables all interrupts until the text has completely left the serial port - so that debug messages are guaranteed to be seen even if the cpu crashes right afterwards.

The buttons send what looks like IR signals to the main board, which are interpreted on interrupts. No interrupts, no button press/release codes are seen.

Hugo



Top