-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 118783 b: refs/heads/master c: 2830c9f h: refs/heads/master i: 118781: d02b969 118779: f808ce2 118775: cc752df 118767: 9446297 118751: c19cbac 118719: 757b70d 118655: 2566102 118527: 99e8964 118271: 6035509 117759: 4a083c3 116735: 93efc13 114687: b5e6a13 v: v3
- Loading branch information
Venki Pallipadi
authored and
Len Brown
committed
Oct 28, 2008
1 parent
d8f57d4
commit e9cfd9d
Showing
1,206 changed files
with
10,436 additions
and
11,515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: e911d27af43e7d28d59a96a4682e8942f0661469 | ||
refs/heads/master: 2830c9fb8e66cee70b8bffdfb0de01c144c7e643 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Empeg, Ltd's Empeg MP3 Car Audio Player | ||
|
||
The initial design is to go in your car, but you can use it at home, on a | ||
boat... almost anywhere. The principle is to store CD-quality music using | ||
MPEG technology onto a hard disk in the unit, and use the power of the | ||
embedded computer to serve up the music you want. | ||
|
||
For more details, see: | ||
|
||
http://www.empeg.com | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
Infra-red driver documentation. | ||
|
||
Mike Crowe <mac@empeg.com> | ||
(C) Empeg Ltd 1999 | ||
|
||
Not a lot here yet :-) | ||
|
||
The Kenwood KCA-R6A remote control generates a sequence like the following: | ||
|
||
Go low for approx 16T (Around 9000us) | ||
Go high for approx 8T (Around 4000us) | ||
Go low for less than 2T (Around 750us) | ||
|
||
For each of the 32 bits | ||
Go high for more than 2T (Around 1500us) == 1 | ||
Go high for less than T (Around 400us) == 0 | ||
Go low for less than 2T (Around 750us) | ||
|
||
Rather than repeat a signal when the button is held down certain buttons | ||
generate the following code to indicate repetition. | ||
|
||
Go low for approx 16T | ||
Go high for approx 4T | ||
Go low for less than 2T | ||
|
||
(By removing the <2T from the start of the sequence and placing at the end | ||
it can be considered a stop bit but I found it easier to deal with it at | ||
the start). | ||
|
||
The 32 bits are encoded as XxYy where x and y are the actual data values | ||
while X and Y are the logical inverses of the associated data values. Using | ||
LSB first yields sensible codes for the numbers. | ||
|
||
All codes are of the form b9xx | ||
|
||
The numeric keys generate the code 0x where x is the number pressed. | ||
|
||
Tuner 1c | ||
Tape 1d | ||
CD 1e | ||
CD-MD-CH 1f | ||
Track- 0a | ||
Track+ 0b | ||
Rewind 0c | ||
FF 0d | ||
DNPP 5e | ||
Play/Pause 0e | ||
Vol+ 14 | ||
Vol- 15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
mknod /dev/display c 244 0 | ||
mknod /dev/ir c 242 0 | ||
mknod /dev/usb0 c 243 0 | ||
mknod /dev/audio c 245 4 | ||
mknod /dev/dsp c 245 3 | ||
mknod /dev/mixer c 245 0 | ||
mknod /dev/empeg_state c 246 0 | ||
mknod /dev/radio0 c 81 64 | ||
ln -sf radio0 radio | ||
ln -sf usb0 usb |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.