From: K.Ohta Date: Tue, 9 Jul 2013 11:32:23 +0000 (+0900) Subject: [EXAMP] Change mute to ex-amp-power to save idle-power, NJM2073@Mute mode is eaten... X-Git-Url: http://git.sourceforge.jp/view?a=commitdiff_plain;h=4eba10a663f1b9d9bcf77a0a350270dcd8e4fb59;p=openi2cradio%2FOpenI2CRadio.git [EXAMP] Change mute to ex-amp-power to save idle-power, NJM2073@Mute mode is eaten >10mA, it's too eat on idle. In idle-state, now still eaten about 13~15mA, almost RF-Preamp. --- diff --git a/gSCH/OpenI2CRadio-v1.00-p4.png b/gSCH/OpenI2CRadio-v1.00-p4.png index a387b97..c149e0e 100644 Binary files a/gSCH/OpenI2CRadio-v1.00-p4.png and b/gSCH/OpenI2CRadio-v1.00-p4.png differ diff --git a/gSCH/OpenI2CRadio-v1.00-p4.sch b/gSCH/OpenI2CRadio-v1.00-p4.sch index 30d68da..b9212a9 100644 --- a/gSCH/OpenI2CRadio-v1.00-p4.sch +++ b/gSCH/OpenI2CRadio-v1.00-p4.sch @@ -222,34 +222,10 @@ N 44700 45600 44500 45600 4 C 45800 43200 1 0 0 gnd-2.sym N 45900 44600 45900 43500 4 N 45700 45600 45700 48300 4 -N 44800 48300 47800 48300 4 -N 47800 48300 47800 48400 4 -C 47600 48400 1 0 0 generic-power.sym -{ -T 47800 48650 5 10 1 1 0 3 1 -net=Vcc:2 -} +N 44800 48300 50400 48300 4 C 43100 44600 1 0 0 gnd-2.sym C 43100 41600 1 0 0 gnd-2.sym N 52400 43500 52400 43700 4 -C 49400 46900 1 90 0 resistor-1.sym -{ -T 49000 47200 5 10 0 0 90 0 1 -device=RESISTOR -T 49100 47700 5 10 1 1 180 0 1 -refdes=R307 -T 49100 47400 5 10 1 1 180 0 1 -value=47K -} -C 50500 46900 1 90 0 resistor-1.sym -{ -T 50100 47200 5 10 0 0 90 0 1 -device=RESISTOR -T 50200 47600 5 10 1 1 180 0 1 -refdes=R308 -T 49900 47200 5 10 1 1 0 0 1 -value=47K -} C 52800 47800 1 0 1 npn-2.sym { T 52200 48300 5 10 0 0 0 6 1 @@ -298,8 +274,7 @@ T 50900 50100 5 10 1 1 0 0 1 model-name=DMG3415U } N 50990 49999 50400 49999 4 -N 50400 49999 50400 47800 4 -N 50400 47800 49300 47800 4 +N 50400 49999 50400 48300 4 N 51834 49999 52300 49999 4 N 52300 49900 52300 50000 4 N 51590 49499 51590 49000 4 @@ -307,8 +282,6 @@ N 51590 49000 52300 49000 4 N 52300 49000 52300 48800 4 C 52200 47400 1 0 0 gnd-2.sym N 52300 47800 52300 47700 4 -N 50400 46900 50400 46100 4 -N 49300 44400 49300 46900 4 N 49300 44600 48900 44600 4 N 52800 50000 52800 50200 4 C 52600 50200 1 0 0 generic-power.sym @@ -332,7 +305,7 @@ T 51000 40100 9 10 1 0 0 0 1 T 51500 40100 9 10 1 0 0 0 1 x T 53900 40400 9 10 1 0 0 0 1 -1.01 +1.02 T 53900 40000 9 10 1 0 0 0 2 K.Ohta @@ -362,16 +335,21 @@ device=SPEAKER T 41400 47200 5 10 1 1 180 0 1 refdes=SP301 } -C 42100 41900 1 0 1 speaker-2.sym +C 42300 41900 1 0 1 speaker-2.sym { -T 40200 44800 5 10 0 0 0 6 1 +T 40400 44800 5 10 0 0 0 6 1 device=SPEAKER -T 41300 44000 5 10 1 1 0 6 1 +T 41500 44000 5 10 1 1 0 6 1 refdes=SP302 } N 42300 46700 43200 46700 4 N 43200 44900 42300 44900 4 N 42300 44900 42300 45500 4 -N 43200 42100 42100 42100 4 -N 42100 42100 42100 42600 4 -N 42100 43800 43200 43800 4 +N 43200 42100 42300 42100 4 +N 42300 42100 42300 42600 4 +N 42300 43800 43200 43800 4 +T 50500 47600 9 10 1 0 0 0 1 +※1 +N 49300 44400 49300 44600 4 +T 47700 41700 9 10 1 0 0 0 1 +※1 2013-07-09 diff --git a/ioports.c b/ioports.c index 07fb764..2fde4a2 100644 --- a/ioports.c +++ b/ioports.c @@ -45,9 +45,11 @@ void set_amfmlamp(unsigned char f) void set_examp_mute(unsigned char f) { if(f == 0x00) { - _PORT_MUTE = 0; // Not Mute + _PORT_MUTE = 1; // 20130709 Not Mute + idle_time_ms(200); } else { - _PORT_MUTE = 1; + _PORT_MUTE = 0; + idle_time_ms(200); } } diff --git a/nbproject/Makefile-genesis.properties b/nbproject/Makefile-genesis.properties index 281be92..1fa4478 100644 --- a/nbproject/Makefile-genesis.properties +++ b/nbproject/Makefile-genesis.properties @@ -1,5 +1,5 @@ # -#Sun Jul 07 23:28:00 JST 2013 +#Tue Jul 09 20:06:00 JST 2013 default.languagetoolchain.dir=/usr/local/bin default.br-unifei-rmaalmeida-toolchainSDCC-SDCCtoolchain.md5=b67cce1ad75b450308d7806e430931b3 com-microchip-mplab-nbide-embedded-makeproject-MakeProject.md5=8fe1589514540343a5279c082104bce0 diff --git a/nbproject/configurations.xml b/nbproject/configurations.xml index 125e29e..60c0eea 100644 --- a/nbproject/configurations.xml +++ b/nbproject/configurations.xml @@ -122,8 +122,6 @@ - -