WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • inflex
    Badcaps Veteran
    • Aug 2012
    • 544
    • Australia

    #101
    Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

    SUCCESS!!! Finally. That was fiddly.

    The key was that digit (plain) to encoded you have to use 3-rotate, but for alpha (plain) use 10-rotate.

    EDIT: okay, not *quite* success yet, the date is wrong... should be July 26, 2016 :sigh:



    Header 1: 'O95w-28ps49m 02v9o.' => 'Tebo-ictview files.'
    Owner: 'G5u9k8s' => 'Landrex'
    Password: 'B!Z@6sob' => 'G!G@byt3'
    Date: 'Eksq dc, beeh' => 'July 21, 2908'
    Last edited by inflex; 11-21-2021, 08:51 AM.
    YouTube Repair Videos - https://www.youtube.com/user/19PLD73
    FlexBV BoardView software - Linux/OSX/Windows - http://pldaniels.com/flexbv

    Comment

    • inflex
      Badcaps Veteran
      • Aug 2012
      • 544
      • Australia

      #102
      Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

      NOW it's fixed....


      Header 1: 'O95w-28ps49m 02v9o.' => 'Tebo-ictview files.'
      Owner: 'G5u9k8s' => 'Landrex'
      Password: 'B!Z@6sob' => 'G!G@byt3'
      Date: 'Eksq dc, beeh' => 'July 21, 2016'
      YouTube Repair Videos - https://www.youtube.com/user/19PLD73
      FlexBV BoardView software - Linux/OSX/Windows - http://pldaniels.com/flexbv

      Comment

      • mmu
        Member
        • Aug 2019
        • 28
        • France

        #103
        Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

        Oh gee, all of this for a few strings… Nice teamwork!

        Comment

        • inflex
          Badcaps Veteran
          • Aug 2012
          • 544
          • Australia

          #104
          Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

          Originally posted by mmu
          Oh gee, all of this for a few strings… Nice teamwork!
          Agreed, that one was a bit disproportionate.

          I've been going back over your python dump_tvw code and migrated a lot of stuff in to my C decoder and things are starting to come together (sadly the whole pins/parts on the boardview won't really happen until right at the end ).

          ie, here's a dump so far of what I've got with the B562.tvw file ( managed to get the nets out on this one ).

          Still some issues with parsing on more complicated boards with different pad options / types and still haven't worked out the block of data after the nets but before the part:pin definitions (with all the probe data).
          Attached Files
          YouTube Repair Videos - https://www.youtube.com/user/19PLD73
          FlexBV BoardView software - Linux/OSX/Windows - http://pldaniels.com/flexbv

          Comment

          • Maxpower3
            Bad Veteran
            • Feb 2018
            • 1214
            • France

            #105
            Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

            Do you have any information on this type of files .cad and .fab ?

            Do you think that it is possible to extract and try to read with another viewer.
            It would seem unisoft and fabmaster would be the only ones to do this work maybe?
            it might be easier to retrieve the right information

            https://www.unisoft-cim.com/pcbview.php
            https://smtnet.com/company/index.cfm...mpany_id=41319

            I think you have already done research on this side
            Attached Files

            Comment

            • inflex
              Badcaps Veteran
              • Aug 2012
              • 544
              • Australia

              #106
              Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

              It's interesting, the Unisoft site used to actually have multiple sample files for each format; I see they've done an update and removed that.

              FAB, IPC, GenCAD, CAD I've added ( maybe some others ) on top of what OBV has ( though I believe OBV now has GenCAD support as well )
              YouTube Repair Videos - https://www.youtube.com/user/19PLD73
              FlexBV BoardView software - Linux/OSX/Windows - http://pldaniels.com/flexbv

              Comment

              • inflex
                Badcaps Veteran
                • Aug 2012
                • 544
                • Australia

                #107
                Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                Have the preliminary DRILL layer sorted out now, and that also makes my first connection with the nets.

                03H30 roughly... spent too much time on this tonight and a lot of kludging, but at least the hole sizes are about similar to the tool sizes and the netnames are correct too.

                Small celebration.

                (edit: tebo uses diameter, I use radius... fixed by /2 )
                Attached Files
                Last edited by inflex; 11-23-2021, 11:31 AM.
                YouTube Repair Videos - https://www.youtube.com/user/19PLD73
                FlexBV BoardView software - Linux/OSX/Windows - http://pldaniels.com/flexbv

                Comment

                • mmu
                  Member
                  • Aug 2019
                  • 28
                  • France

                  #108
                  Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                  We'll soon have to open some champ I guess.

                  On the topic of other formats, yesterday I had a look at Sprint Layout (another night not slept) because people recreating all those old computer PCBs mostly use that, it seems someone started REing that (but it's some win32 stuff that doesn't even builds with libwine because MFC). Would be nice to get proper board view when troubleshooting battery-damaged logicboards like the ill-fated Mac LCs…

                  Comment

                  • inflex
                    Badcaps Veteran
                    • Aug 2012
                    • 544
                    • Australia

                    #109
                    Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                    I swear I need to write a hex-editor just for these types of jobs

                    ie, so I can do a N-way comparison between starting points in a file and see where the divergences are.

                    wxHexEditor comes close but it also is buggy/odd on linux.
                    Attached Files
                    YouTube Repair Videos - https://www.youtube.com/user/19PLD73
                    FlexBV BoardView software - Linux/OSX/Windows - http://pldaniels.com/flexbv

                    Comment

                    • Maxpower3
                      Bad Veteran
                      • Feb 2018
                      • 1214
                      • France

                      #110
                      Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                      Originally posted by inflex
                      I swear I need to write a hex-editor just for these types of jobs

                      ie, so I can do a N-way comparison between starting points in a file and see where the divergences are.

                      wxHexEditor comes close but it also is buggy/odd on linux.
                      not quite understood what you wanted but I use it when I want to cut, analyze and compare.
                      Attached Files
                      Last edited by Maxpower3; 11-25-2021, 08:17 AM.

                      Comment

                      • inflex
                        Badcaps Veteran
                        • Aug 2012
                        • 544
                        • Australia

                        #111
                        Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                        I just found ImHex ... looks like what I'm after.

                        https://github.com/WerWolv/ImHex
                        YouTube Repair Videos - https://www.youtube.com/user/19PLD73
                        FlexBV BoardView software - Linux/OSX/Windows - http://pldaniels.com/flexbv

                        Comment

                        • inflex
                          Badcaps Veteran
                          • Aug 2012
                          • 544
                          • Australia

                          #112
                          Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                          A little bit of a step backwards as I migrate what I've done so far over in to ImHex tool. Upside is that I basically am forcing myself to strictly define the spec.
                          Attached Files
                          YouTube Repair Videos - https://www.youtube.com/user/19PLD73
                          FlexBV BoardView software - Linux/OSX/Windows - http://pldaniels.com/flexbv

                          Comment

                          • mmu
                            Member
                            • Aug 2019
                            • 28
                            • France

                            #113
                            Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                            I know about Hachoir : http://hachoir.readthedocs.io/
                            Didn't use it much, and it doesn't run for some reason from the package here.

                            Comment

                            • inflex
                              Badcaps Veteran
                              • Aug 2012
                              • 544
                              • Australia

                              #114
                              Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                              Just "reporting in".

                              Development continues, the ImHex tool has had a few fixes as well which is improving the process of decoding.

                              There's some key patterns I still need to decode but there is defintely progress.

                              I've been uploading the teboview.hexproj file for ImHex to the github.

                              Right now I'll crash / fail with boards I'm not using for the decoding process; this is because I'm initially trying to get a running result to the end of the file, and from there I'll introduce new boards to flesh out the various "alternative" data blocks.
                              YouTube Repair Videos - https://www.youtube.com/user/19PLD73
                              FlexBV BoardView software - Linux/OSX/Windows - http://pldaniels.com/flexbv

                              Comment

                              • earthoo7
                                Member
                                • Jun 2017
                                • 13
                                • france

                                #115
                                Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                                Which software made for generate .brd boardview to .fz .tvw .bdv .cad .gr like format ?
                                Or what software can covert .brd boardview to .fz .tvw .cad boardviews format?

                                Comment

                                • earthoo7
                                  Member
                                  • Jun 2017
                                  • 13
                                  • france

                                  #116
                                  Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                                  thankyou

                                  Comment

                                  • coolshrimp
                                    Senior Member
                                    • Nov 2016
                                    • 54
                                    • Canada

                                    #117
                                    Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                                    where can we get this tool your developing?
                                    I figured out my password but the tool would be so much faster.

                                    Comment

                                    • inflex
                                      Badcaps Veteran
                                      • Aug 2012
                                      • 544
                                      • Australia

                                      #118
                                      Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                                      Delayed work really - many other things have taken priority over the TVW decoder.
                                      YouTube Repair Videos - https://www.youtube.com/user/19PLD73
                                      FlexBV BoardView software - Linux/OSX/Windows - http://pldaniels.com/flexbv

                                      Comment

                                      • Danila.
                                        New Member
                                        • Apr 2021
                                        • 8
                                        • BELARUS => POLAND

                                        #119
                                        Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                                        Originally posted by inflex
                                        Removing the password is trivial.

                                        I took a file which has a password in it, and removed the string that occurs after the .G34S string and set the string length byte to 0. Now is readable in TeboView 4 without requesting the password.
                                        Maybe anyone help me with password in this file. I've removed same bytes, and file is opening with errors via TVW, via BoardViewer all is ok. But i want to use layers.
                                        Attached Files
                                        Last edited by Danila.; 12-13-2022, 05:28 AM.

                                        Comment

                                        • Danila.
                                          New Member
                                          • Apr 2021
                                          • 8
                                          • BELARUS => POLAND

                                          #120
                                          Re: WANTED: Teboview / TVW file format specification to write OpenBoardview decoder

                                          Originally posted by inflex
                                          Moving pointer ahead...Password: 'YZM' => 'DFT'
                                          I've found)

                                          Comment

                                          Related Topics

                                          Collapse

                                          • testaccgta
                                            Unable to verify IC or write/erase/flash BIOS file to XMC QH128AHIG SPI chip using NeoProgrammer/AsProgrammer
                                            by testaccgta
                                            Hi, everyone!

                                            I've recently acquired two brand new SPI chips to replace the one currently in my Acer A514-54G laptop MB (FH5AT LA-K092P). The reason why I'm replacing the current SPI chip is because I had some difficulties with a third-party IT assistant who pretty much lacked the soldering skills and ended up destroying the current SPI chip soldered to my MB from factory.

                                            I've decided to do this on my own because I spent the past month or so learning some soldering skills and BIOS modding through Badcaps and WinRaid forums, hence the attempt. I've also chosen to buy...
                                            09-01-2024, 08:24 PM
                                          • Forest79
                                            Lenovo ThinkStation P520 BIOS file needed
                                            by Forest79
                                            Hello,

                                            I got a Lenovo ThinkStation P520 (Type 30BF) from a friend, asking me for a repair. Windows 11 offered a firmware upgrade as an optional update, and it failed.
                                            The emergency flash procedure from the hardware manual has also failed. So, I asked an acquaintance with better skills to flash the BIOS directly.

                                            However, the chip (a Macronix MX25L25673GMI-08G) has a size of 32 MB, and the BIOS file from the Lenovo website (extracted with UEFITool) has a little more than 16 MB. Thus, the software my acquaintance used (SiberiaProg v1.45, with a CH341A Programmer)...
                                            07-23-2023, 07:39 AM
                                          • Zentech
                                            Unable to Write Bios File to SOCIC 25Q128FVPQ Chip
                                            by Zentech
                                            bios chip: 25Q128FVPQ
                                            MB SN: 6050A2822301-MB-A01
                                            when I first got this laptop the bios was locked, I unsoldered and unlocked the bios. the problem is that I lifted a couple of pads from the MB. So I couldn't use the WSON chip that comes with the board, so I got an equivalent bios chip SOCIC 8pin. The problem is that I'm trying to write the file (original) to the chip and it will not program it. I'm using NeoProgrammer.
                                            Here's the error
                                            Code:
                                            Current programmer: CH341
                                            15:29:00
                                            Programming memory(verifying)...
                                            Verification error on address: 00133000
                                            ...
                                            03-10-2022, 02:39 PM
                                          • hazem3636
                                            need Bios Bin file Dell server 220
                                            by hazem3636
                                            hi everyone

                                            i need dump file for dell server r220
                                            i have download Flash BIOS executable file but i dont know how to conver it to Bin file

                                            i have check on youtube there is some programs are doing this method of creating Bin file from ExE file .


                                            if anyone has this method please need his supporting .

                                            all the best

                                            EXE file is attched and Original Bin file from the Bios Chip is attached also

                                            and dell website "https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=mrxv...
                                            11-05-2022, 06:20 AM
                                          • traxformania
                                            TONGFANG "GM7TG7P" Bios Password Problem?
                                            by traxformania
                                            Hello,

                                            I'm using TONGFANG "GM7TG7P" model laptop for over 3 years and i'm entering the same bios administrator password everyday. My laptop has Aptio BIOS (American Megatrends, AMI).

                                            But today it's not accepting my password. I'm %100 sure i'm entering the correct password.

                                            I'm trying to reset my bios without success.

                                            I tried :

                                            -I removed the BIOS battery and main battery. Waited for a long time but it didn't work. They already stated in the user manual that the password will not be reset even if the batteries...
                                            11-15-2023, 07:32 AM
                                          • Loading...
                                          • No more items.
                                          Working...