summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-05-16 21:32:04 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-05-16 21:32:04 +0000
commitafd30bb4cd64077274f90c0154ba74022a0cfdc3 (patch)
treea0b193c3bcc59a659051c410e75a3294f7f4fa4c
parent39224664865222dcd46a39aa4a70d65e4b412d8e (diff)
downloadrockbox-afd30bb4cd64077274f90c0154ba74022a0cfdc3.tar.gz
rockbox-afd30bb4cd64077274f90c0154ba74022a0cfdc3.zip
More readable comment
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@609 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/drivers/dac.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/firmware/drivers/dac.c b/firmware/drivers/dac.c
index 0ea47dac89..c968246a61 100644
--- a/firmware/drivers/dac.c
+++ b/firmware/drivers/dac.c
@@ -41,15 +41,15 @@ int dac_volume(unsigned int volume)
41 return 0; 41 return 0;
42} 42}
43 43
44/*************************************************** 44/******************************************************************
45** Bit6: 0 = 3V, 1 = 5V 45** Bit6: 0 = 3V 1 = 5V
46** Bit5: 0 = normal, 1 = low power 46** Bit5: 0 = normal 1 = low power
47** Bit4: 0 = AUX2 off, 1 = AUX2 on 47** Bit4: 0 = AUX2 off 1 = AUX2 on
48** Bit3: 0 = AUX1 off, 1 = AUX2 on 48** Bit3: 0 = AUX1 off 1 = AUX2 on
49** Bit2: 0 = DAC off, 1 = DAC on 49** Bit2: 0 = DAC off 1 = DAC on
50** Bit1: 0 = stereo, 1 = mono 50** Bit1: 0 = stereo 1 = mono
51** Bit0: 0 = normal right amp, 1 = inverted right amp 51** Bit0: 0 = normal right amp 1 = inverted right amp
52***************************************************/ 52******************************************************************/
53int dac_config(int value) 53int dac_config(int value)
54{ 54{
55 int i; 55 int i;