Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • diif
    Badcaps Legend
    • Feb 2014
    • 6978
    • England

    #61
    Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

    Originally posted by Davi.p
    Which stencil?? I have no stencil obviously.. I will not use it..
    My reflow worsen the situation so i go for reballing and if does not work maybe a new chip ordered..
    My mistake, they cost £10/$10/€10 and it saves having to manually place 788 balls. Why would you not buy one ?

    Comment

    • Davi.p
      Hobbist
      • Sep 2009
      • 4259
      • Italy - Milan

      #62
      Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

      I cannot wait for the stencil to arrive to know which is the balls size to order and wait another month or two to begin the job.. i think i will spend half an hour or less to place the balls by hand so maybe i can do it so..

      Comment

      • diif
        Badcaps Legend
        • Feb 2014
        • 6978
        • England

        #63
        Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

        https://www.ebay.co.uk/itm/9x9-FNP10...-/273592452088

        0.6mm balls.

        Comment

        • Davi.p
          Hobbist
          • Sep 2009
          • 4259
          • Italy - Milan

          #64
          Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

          Ok thanks!

          Comment

          • Maalobs
            Senior Member
            • Jun 2016
            • 120
            • Sweden

            #65
            Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

            While I was at it, I also took a backup of the EDID config in the TV.
            The EDID is stored in this chip:
            Click image for larger version

Name:	Sil_9287BCNU.jpg
Views:	401
Size:	132.3 KB
ID:	2033955

            Apparently it's a huge hassle to get access to the datasheet for it from Lattice, who nowadays owns Silicon Image.
            But it's not needed, there is just one detail there that is important to know; this particular chip does not support writing to EDID via HDMI, it must be done through the I2C-bus.
            Once you know that, you can handle writing any corrupt bytes in the register with a BusPirate or a Raspberry Pi.

            Reading the EDID works through HDMI of course, here is how it's done from a computer with Linux that has the HDMI-output connected to one of the inputs on the TV:

            Code:
            knoppix@Microknoppix:~$ su -
            root@Microknoppix:~# modprobe i2c-dev
            root@Microknoppix:~# apt-get update
            root@Microknoppix:~# apt-get install i2c-tools
            
            # List the available I2C-buses on your computer:
            root@Microknoppix:~# i2cdetect -l | sort
            i2c-0 smbus   SMBus I801 adapter at 3040   SMBus adapter
            i2c-1 i2c     i915 gmbus ssc         I2C adapter
            i2c-2 i2c     i915 gmbus vga         I2C adapter
            i2c-3 i2c     i915 gmbus panel         I2C adapter
            i2c-4 i2c     i915 gmbus dpc         I2C adapter
            i2c-5 i2c     i915 gmbus dpb         I2C adapter
            i2c-6 i2c     i915 gmbus dpd         I2C adapter
            i2c-7 i2c     DPDDC-A             I2C adapter
            
            # List all available device addresses on each I2C-bus, then look for any device address 0x50 in the output:
            
            root@Microknoppix:~# perl -we 'system("i2cdetect -y $_") for 0..7'
               0 1 2 3 4 5 6 7 8 9 a b c d e f
            00:     -- -- -- -- -- 08 -- -- -- -- -- -- --
            10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            40: -- -- -- -- 44 -- -- -- -- -- -- -- -- -- -- --
            50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            70: -- -- -- -- -- -- -- --            
               0 1 2 3 4 5 6 7 8 9 a b c d e f
            00:     -- -- -- -- -- -- -- -- -- -- -- -- --
            10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            70: -- -- -- -- -- -- -- --            
               0 1 2 3 4 5 6 7 8 9 a b c d e f
            00:     -- -- -- -- -- -- -- -- -- -- -- -- --
            10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            70: -- -- -- -- -- -- -- --            
               0 1 2 3 4 5 6 7 8 9 a b c d e f
            00:     -- -- -- -- -- -- -- -- -- -- -- -- --
            10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            70: -- -- -- -- -- -- -- --            
               0 1 2 3 4 5 6 7 8 9 a b c d e f
            00:     -- -- -- -- -- -- -- -- -- -- -- -- --
            10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            70: -- -- -- -- -- -- -- --            
               0 1 2 3 4 5 6 7 8 9 a b c d e f
            00:     -- -- -- -- -- -- -- -- -- -- -- -- --
            10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            30: -- -- -- -- -- -- -- -- -- -- 3a -- -- -- -- --
            40: 40 -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            50: 50 -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- <- 0x50 here
            60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            70: -- -- -- -- -- -- -- --            
               0 1 2 3 4 5 6 7 8 9 a b c d e f
            00:     -- -- -- -- -- -- -- -- -- -- -- -- --
            10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            70: -- -- -- -- -- -- -- --            
               0 1 2 3 4 5 6 7 8 9 a b c d e f
            00:     03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f
            10: 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f
            20: 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f
            30: -- -- -- -- -- -- -- -- 38 39 3a 3b 3c 3d 3e 3f
            40: 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f
            50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
            70: -- -- -- -- -- -- -- --            
            
            # Only one instance of address 0x50 on this computer, on the 5th I2C-bus, so dump the values of that device on that bus:
            
            root@Microknoppix:~# i2cdump -y 5 0x50
               0 1 2 3 4 5 6 7 8 9 a b c d e f  0123456789abcdef
            00: 00 ff ff ff ff ff ff 00 41 0c 00 00 01 01 01 01  ........A?..????
            10: 2a 16 01 03 80 84 4a 78 0a e6 92 a3 54 4a 99 26  *?????Jx????TJ?&
            20: 0f 4a 4c 21 08 00 b3 00 95 00 a9 40 90 40 81 00  ?JL!?.?.?.?@?@?.
            30: 81 80 81 40 01 01 02 3a 80 18 71 38 2d 40 58 2c  ???@???:??q8-@X,
            40: 45 00 00 d0 52 00 00 1e 02 3a 80 d0 72 38 2d 40  E..?R..??:??r8-@
            50: 10 2c 45 80 00 d0 52 00 00 1e 00 00 00 fc 00 50  ?,E?.?R..?...?.P
            60: 68 69 6c 69 70 73 20 46 54 56 0a 20 00 00 00 fd  hilips FTV? ...?
            70: 00 30 3e 0f 46 11 00 0a 20 20 20 20 20 20 01 93  .0>?F?.?   ??
            80: 02 03 3a f1 52 10 1f 20 22 21 05 14 04 13 12 03  ??:?R?? "!??????
            90: 11 02 16 07 15 06 01 26 09 1f 07 15 07 50 83 01  ???????&?????P??
            a0: 00 00 70 03 0c 00 10 00 38 2d af 4c 4c d0 04 01  ..p??.?.8-?LL???
            b0: 40 01 ff e3 05 03 01 e2 00 49 01 1d 80 3e 73 38  @?.?????.I???>s8
            c0: 2d 40 7e 2c 45 80 00 d0 52 00 00 1e 01 1d 80 d0  -@~,E?.?R..?????
            d0: 72 1c 16 20 10 2c 25 80 00 d0 52 00 00 9e 01 1d  r?? ?,%?.?R..???
            e0: 00 bc 52 d0 1e 20 b8 28 55 40 00 d0 52 00 00 1e  .?R?? ?(U@.?R..?
            f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4a  ...............J
            
            # Save the results:
            
            root@Microknoppix:~# i2cdump -y 5 0x50 > dump.txt
            root@Microknoppix:~# mv dump.txt /home/knoppix/
            root@Microknoppix:~# chown knoppix:knoppix /home/knoppix/dump.txt
            root@Microknoppix:~# logout
            knoppix@Microknoppix:~$ logout
            Here are some references about reading the EDID:
            https://www.youtube.com/watch?v=IGg1nyTY6oc
            https://www.youtube.com/watch?v=8IMkGdeXcS4
            https://en.wikipedia.org/wiki/Extend...ification_Data
            Last edited by Maalobs; 01-23-2024, 05:02 PM.

            Comment

            • Maalobs
              Senior Member
              • Jun 2016
              • 120
              • Sweden

              #66
              Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

              I'm finished with everything on the TV now, hopefully it will have many more good years left in it.

              The new heatsink is in place:
              Click image for larger version

Name:	Heatsink1.jpg
Views:	410
Size:	606.8 KB
ID:	2033962
              Click image for larger version

Name:	Heatsink2.jpg
Views:	370
Size:	618.4 KB
ID:	2033963

              I also put a small heatsink on the NAND-chip, but it's on the underside of the board so it's not visible here.

              The chassis got a classic redneck solution:
              Click image for larger version

Name:	Dremeled1.jpg
Views:	346
Size:	294.9 KB
ID:	2033956
              Click image for larger version

Name:	Dremeled2.jpg
Views:	336
Size:	388.6 KB
ID:	2033957
              Click image for larger version

Name:	Dremeled3.jpg
Views:	316
Size:	326.5 KB
ID:	2033958
              Click image for larger version

Name:	Dremeled4.jpg
Views:	312
Size:	310.4 KB
ID:	2033959
              Click image for larger version

Name:	Dremeled5.jpg
Views:	310
Size:	309.0 KB
ID:	2033960
              Click image for larger version

Name:	Dremeled6.jpg
Views:	323
Size:	363.4 KB
ID:	2033961

              Say hello to my little friend:
              Click image for larger version

Name:	Works.jpg
Views:	341
Size:	273.4 KB
ID:	2033964

              Thanks for all your help guys!

              I have squirreled away all the firmware images from this model, so let me know if you need a copy of anything.
              Last edited by Maalobs; 01-23-2024, 05:04 PM.

              Comment

              • Davi.p
                Hobbist
                • Sep 2009
                • 4259
                • Italy - Milan

                #67
                Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                From Windows you can use MonInfo software from Entech to read/write EDID..

                Comment

                • Maalobs
                  Senior Member
                  • Jun 2016
                  • 120
                  • Sweden

                  #68
                  Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                  Sure, if you want to pay money for something that's free.
                  I don't normally use Linux but it's something I have needed to learn to be able to get things done.
                  In this case, I booted my laptop from a USB-stick with Knoppix, one of many different bootable live systems with Linux.
                  It's quite handy to have ready for occasions like this.

                  Comment

                  • Davi.p
                    Hobbist
                    • Sep 2009
                    • 4259
                    • Italy - Milan

                    #69
                    Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                    The SW i've said is free...

                    Comment

                    • Maalobs
                      Senior Member
                      • Jun 2016
                      • 120
                      • Sweden

                      #70
                      Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                      It's shareware so technically you should pay for it, but I'll agree to calling it "free".

                      Comment

                      • Davi.p
                        Hobbist
                        • Sep 2009
                        • 4259
                        • Italy - Milan

                        #71
                        Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                        Yes, in fact It's a strange program, i can modify data and set write mode but i've realized the writing is not functional..

                        Comment

                        • Maalobs
                          Senior Member
                          • Jun 2016
                          • 120
                          • Sweden

                          #72
                          Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                          I forgot to mention; I have posted the contents of the SPI Flash and I2C EEPROM in this sticky thread, in case anyone has use for them:
                          https://www.badcaps.net/forum/showpo...&postcount=533

                          Comment

                          • HermannS
                            New Member
                            • Dec 2014
                            • 2
                            • Germany

                            #73
                            Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                            Hello folks, Herr Alpengeist speaking :-)

                            I found this thread while going through the visitor stats of my blog. Thanks for stopping by!

                            I gave up on the QFU boards. It is pure luck whether the CPU will wake up or not. I had reflowed and reballed the heck out of these things and never got any repeatable results. The QFU1.1 boards are so thin that they warp terribly. The QFU1.2 are a bit better in that respect. I am pretty sure that the CPU is to blame and not some balls. The infamous "K" error appears in both QFU1.1 and 1.2 models. Their board layout is different. It would be a big coincidence if the same balls broke. No, I think the CPU is to blame.

                            Only the case when the device is totally dead with a scrambled boot SPI has a 100% repair success rate. Alas, I only had that once. All others were CPU-related.

                            There are P120 CPUs (QFU1.1 and QFU1.2 6008 models) on eBay from Poland. They look legit. Unfortunately, the P240 CPU for the higher QFU1.2 models (7008, 8008) are not available.

                            I suggest that one reheat attempt (without full reflow because that's not the issue) at about 225°C can be done and if that doesn't fix it: dump it. Sad but true. A terrible TV series that was.

                            Comment

                            • Maalobs
                              Senior Member
                              • Jun 2016
                              • 120
                              • Sweden

                              #74
                              Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                              Hi, and thanks for your very detailed and well thought-out blog posts about repairs, I found them both educational and inspiring.

                              Comment

                              • amennone
                                Senior Member
                                • Feb 2015
                                • 61
                                • italy

                                #75
                                Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                                Salve , ho lo stesso problema codice errore 53 con Philips 55PFL8007K12
                                Telaio / Versione : QFU1.1E LA
                                Power Supply : FSP197-4FS01 2722 171 90676 REV : 01
                                Pannello : LTA550HQ19
                                Main board : 3104 308 98314
                                Il televisore si presenta completamente spento .
                                Le tensioni che leggo sono la 3v3s = 3v3 e la STB= 3v1
                                Ho riprogrammato la spiflash 7CT3 (M25P10) ,
                                sul pin 2 del connettore 1M95 la alimentazione
                                è passata a livello logico basso , da 3v1 a 0 volts .
                                La 12 volts , ora , è presente ,
                                come le altre alimentazioni sulla main -board .
                                Ma ottengo codice errore 53 .
                                Ho provato a collegarmi con Hyperterminal al jack di servizio ,
                                ottengo queste informazioni (vedi allegato )
                                Allego anche lettura della Spi 7CT3 prima della programmazione .
                                Il bin, che ho riprogrammato per la SPI è per un processore Fusion 77
                                Mentre il processore sulla main è un Fusion P240 FNP202-B1E32 .
                                Può essere questo il problema ?
                                Una altra domanda , perche con Hyperterminal ottengo questo log ?
                                Attached Files

                                Comment

                                • Davi.p
                                  Hobbist
                                  • Sep 2009
                                  • 4259
                                  • Italy - Milan

                                  #76
                                  Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                                  Amennone di plcforum giusto? Qui devi scrivere in inglese! Controlla su plc una disc. recente di Ottaviucci, il problema e' il processore..

                                  Comment

                                  • amennone
                                    Senior Member
                                    • Feb 2015
                                    • 61
                                    • italy

                                    #77
                                    Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                                    Hi, I have the same problem with error code 53 with Philips 55PFL8007K12
                                    Chassis / Version: QFU1.1E LA
                                    Power supply: FSP197-4FS01 2722 171 90676 REV: 01
                                    Panel: LTA550HQ19 Card
                                    mother: 3104 308 98314
                                    The TV is completely turned off.
                                    The voltages I read are 3v3s = 3v3 and STB = 3v1
                                    I reprogrammed the spiflash 7CT3 (M25P10),
                                    on pin 2 of connector 1M95 the power supply
                                    it has gone to a low logic level, from 3v1 to 0 volts.
                                    The 12 volt, now, is present,
                                    like the other feeds on the mainboard.
                                    But I get error code 53.
                                    I tried connecting to Hyperterminal at the service jack,
                                    I get this information (see attachment)
                                    I also enclose the Spi 7CT3 reading before programming.
                                    The trash, which I reprogrammed for SPI is for a processor,
                                    is a Fusion P240 FNP202-B1E32.
                                    Can this be the problem?
                                    Another question, why do I get this log with Hyperterminal?

                                    Comment

                                    • Davi.p
                                      Hobbist
                                      • Sep 2009
                                      • 4259
                                      • Italy - Milan

                                      #78
                                      Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                                      And open up your own discussion,,this is already too fitted

                                      Comment

                                      • maki
                                        New Member
                                        • May 2011
                                        • 6

                                        #79
                                        Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                                        Hello
                                        I was wondering if someone encountered a blank SPI ?
                                        I have a 46pfl8008, it has 2 blinks on level1 and 53 on level 2.
                                        Recovery isn’t working.
                                        I’ve suspected the SPI (25p10) and because it’s the easiest chip to check.
                                        I’ve used this programmer
                                        https://www.ebay.com/itm/CH341A-Seri...53.m1438.l2649

                                        with a clip
                                        https://www.ebay.com/itm/Soic8-Sop8-...53.m2749.l2649

                                        To my surprise, the chip was totally blank – all FFs.
                                        Any ideas?
                                        Last edited by maki; 08-08-2019, 02:29 AM.

                                        Comment

                                        • hulko
                                          New Member
                                          • Jan 2020
                                          • 1
                                          • Italia

                                          #80
                                          Re: Philips 60PFL8708S/12 - QFU1.2E LA - Error code 53

                                          Hello, sorry i'm new
                                          somebody can explein how i can activate the service modo on 60PFL8708S
                                          because i'd like to try to re-install the original software before the boot of TV

                                          Comment

                                          Related Topics

                                          Collapse

                                          • ngml
                                            Repair of an LG split AC system indoor unit PCB
                                            by ngml
                                            I am trying to repair an LG split AC indoor unit, which does not start and gives a CH05 error code.
                                            This indicates an error in the communication between the outdoor and the indoor unit.
                                            The outdoor unit is fine, so the problem is the indoor PCB.
                                            The indoor unit is an LG PC09SQ NSJ (3SNM09JA2FA), and the PCB has the following type number: EAX35907219-1.2 (see photo1)
                                            I changed optocouplers ICO1X & ICO2X and the NPN transistor S9013 which drives optocoupler ICO2X (see photo2), but this did not remedy the fault.

                                            Does anybody have the schematics of this board,...
                                            02-01-2025, 12:55 PM
                                          • nobbnobb1
                                            Bose Companion 5 - Unit Powers On then Cuts Off Shortly After
                                            by nobbnobb1
                                            Hi guys,

                                            Trying to salvage a Bose Companion 5 computer speaker system that powers off shortly after powering on. It's got a primary USB input (built in DAC) and an aux 3.5mm input. The USB appears to be the primarily source that tells the unit to power on (control pod LED goes green) as the unit has no power switch.

                                            When I first connect power to the unit, plug in the USB, it will play audio nicely for a minute before it drops out and the unit appears to go into standby (control pod LED goes red). It stays in standby and I cannot seem to power it back on without physically...
                                            02-03-2022, 11:14 AM
                                          • BC_TechForum_drb
                                            Missing enable on +5v sec pwr rail AMD Firepro D500-B/Mac Pro late 2013
                                            by BC_TechForum_drb
                                            Sub: Missing enable on +5v sec pwr rail AMD Firepro D500-B/Mac Pro late 2013

                                            Ref: 1/ MacPro6,1 Late 2013/A1481 MD878LL/A (3.5 GHz 6 Core Xeon E5-1650v2)
                                            Gfx-B: APN: 661-7548 PPN: 820-3533-A AMD FirePro D500-B 3GB Vmem
                                            2/ Figure 1 Gfx-D500-B Front Facing
                                            3/ Figure 2 +5v supply (zoom-in)

                                            Intro:
                                            While troubleshooting a Mac Pro(6,1) referenced above I discovered the +5v secondary supply did not stand up on the D500-B graphics card as a result of a missing enable signal. The +3.3v secondary rail was the only rail that did standup. I tried to perform...
                                            12-07-2023, 09:55 PM
                                          • Gjackson
                                            Air-conditioning unit power supply failing to power up
                                            by Gjackson
                                            Hi all, I managed to narrow down which PCB was causing my Haier AC to throw out an E7 error code (E7 indicates that the indoor unit and outdoor unit cannot communicate). I found that the outdoor unit power board which gives 5v and 15v to the outdoor unit module board fails to fully power up.. The power Led starts to fade in incredibly slowly and the 5v and 15v power buses jump around like crazy and never reach their required voltage. I unplugged the module board from the power board and the power board powered up fine! It had a steady 5v and 15v out and the power LED came on instantly and Bright....
                                            01-08-2022, 09:24 AM
                                          • Duranitron
                                            Asus x512dk rev 2.1 power on problem
                                            by Duranitron
                                            When I reflash again the bios of hoaca388 the unit powers on and the unit lives!!! Hooray!! All voltage in the coil 3.3v, 5v and 6.7v indicate charging are all present. including the cpu voltage , EEPROM and GPU voltage the unit is now alive, normal screen booting to windows and log in screen until I power it off. Then the unit never goes on even when pressing the power button in the keyboard.. Voltage reading 19v main , 3.3v VCC in IT8225E-128 and EEPROM VCC 0 volt and the charging voltage 0 volt.

                                            Try to trace the power switch button goin to the power switch IC PU8803 (APL3533AQBI-TRG)...
                                            11-26-2024, 10:22 PM
                                          • Loading...
                                          • No more items.
                                          Working...