• Login
Community
  • Login

Intel Hex not higlighting

Scheduled Pinned Locked Moved Help wanted · · · – – – · · ·
29 Posts 5 Posters 4.6k Views
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A
    Alan Kilborn @Ekopalypse
    last edited by Alan Kilborn Aug 11, 2020, 11:50 AM Aug 11, 2020, 11:48 AM

    @Ekopalypse

    I guess really ambitious lexing! :-)

    Hmmm, when I try it with that data the FF is green like you first showed, not red like your second screenshot.

    E D 2 Replies Last reply Aug 11, 2020, 11:49 AM Reply Quote 1
    • E
      Ekopalypse @Alan Kilborn
      last edited by Aug 11, 2020, 11:49 AM

      @Alan-Kilborn said in Intel Hex not higlighting:

      I guess really ambitious lexing!

      Lol
      It would be nice if the builtin lexers would show code which isn’t efficient :-D

      1 Reply Last reply Reply Quote 1
      • D
        David Griffiths @Alan Kilborn
        last edited by David Griffiths Aug 11, 2020, 12:05 PM Aug 11, 2020, 12:04 PM

        @Alan-Kilborn Did you change the last digit before the FF from 5 to 6 like Eko did?

        1 Reply Last reply Reply Quote 3
        • G
          guy038
          last edited by guy038 Oct 31, 2021, 3:16 AM Aug 12, 2020, 4:41 PM

          Hello, @david-griffiths, @ekopalypse, @alan-kilborn and All

          You can find a good documentation on the Intel Hex File Format from below :

          https://developer.arm.com/documentation/ka003292/latest

          https://en.wikipedia.org/wiki/Intel_HEX

          And I deduced that the checksum can be calculated from this formula :

          CheckSum = 256 - ( ∑ Byte Values ) MOD 256

          Each Byte Value represents the decimal value of the next two hexadecimal codes, minus the last two ones, standing for the checksum

          For instance, the fourth line, of your example, is :

                                                   vv----- CheckSum
          :10004C001D7F1093040410E008EC74D114E110939C
           <-------------------------------------->        Data Range
          

          So its checksum is :

           
          = 256 - (10h + 00h + 4Ch + 00h + 1Dh + 7Fh + 10h + 93h + 04h + 04h + 10h + E0h + 08h + ECh + 74h + D1h + 14h + E1h + 10h + 93h) mod 256
          
          = 256 - ( 16 +   0  + 76  +  0  + 29 + 127 +  16 + 147 +   4 +   4 + 16  + 224  +  8 + 236 + 116 + 209 +  20 + 225 +  16 + 147) mod 256
          
          = 256 - 1636 mod 256
          
          = 256 - 100
          

          Thus, the checksum of the fourth line is 156 , so 9C


          BTW, it’s work pointing out that the background color of the CHECKSUM and CHECKSUM_WRONG styles of the Intel Hex language are totally transparent ( α = 0 ) So, for instance, the default red background of a wrong checksum is not visible if this line is the current N++ line with usual very pale blue background color !

          Best Regards,

          guy038

          A D 2 Replies Last reply Aug 12, 2020, 5:34 PM Reply Quote 1
          • A
            Alan Kilborn @guy038
            last edited by Aug 12, 2020, 5:34 PM

            @guy038 said in Intel Hex not higlighting:

            BTW, it’s work pointing out that the background color of the CHECKSUM and CHECKSUM_WRONG styles of the Intel Hex language are totally transparent ( α = 0 ) So, for instance, the default red background of a wrong checksum is not visible if this line is the current N++ line with usual very pale blue background color !

            Interesting. What’s the way around that, if any?

            P 1 Reply Last reply Aug 12, 2020, 5:58 PM Reply Quote 0
            • P
              PeterJones @Alan Kilborn
              last edited by Aug 12, 2020, 5:58 PM

              @Alan-Kilborn said in Intel Hex not higlighting:

              What’s the way around that, if any?

              Change the foreground color of CHECKSUM_WRONG to something that contrasts both with its red background color and with your Global Styles > Current Line Background > Background color.

              A 1 Reply Last reply Aug 12, 2020, 6:02 PM Reply Quote 1
              • A
                Alan Kilborn @PeterJones
                last edited by Aug 12, 2020, 6:02 PM

                @PeterJones said in Intel Hex not higlighting:

                Change the foreground color of CHECKSUM_WRONG to something that contrasts both with its red background color and with your Global Styles > Current Line Background > Background color.

                Well…yea…but I meant, isn’t there a way to do something to the current-line-background color so that you can just get the red there (or close to it due to blending of colors) for the non-current line case?

                P 1 Reply Last reply Aug 12, 2020, 6:38 PM Reply Quote 0
                • P
                  PeterJones @Alan Kilborn
                  last edited by Aug 12, 2020, 6:38 PM

                  @Alan-Kilborn

                  isn’t there a way to do something to the current-line-background color so that you can just get the red there (or close

                  I think the problem isn’t that the red has transparency; I think the problem is that the current-line-background has no transparency and is drawn over the red, so the current-line-background is the only visible background. It might be possible if the current-line-transparency could be set to 50% or something of that ilk, but that cannot be done in the GUI.

                  I tried editing stylers.xml to use either the MSB or LSB as an alpha value for the current line background

                          <WidgetStyle name="Current line background colour" styleID="0" bgColor="E8E8FF80" colorStyle="1" fontStyle="0" />
                  or
                          <WidgetStyle name="Current line background colour" styleID="0" bgColor="80E8E8FF" colorStyle="1" fontStyle="0" />
                  

                  But either was interpreted as invalid color, and current-line-background became black.

                  So to add transparency to current line background, it would have to be a codebase edit.

                  A 1 Reply Last reply Aug 12, 2020, 6:56 PM Reply Quote 1
                  • A
                    Alan Kilborn @PeterJones
                    last edited by Aug 12, 2020, 6:56 PM

                    @PeterJones said in Intel Hex not higlighting:

                    So to add transparency to current line background, it would have to be a codebase edit.

                    I did some searching and found THIS as probably related.

                    1 Reply Last reply Reply Quote 2
                    • D
                      David Griffiths @guy038
                      last edited by Aug 12, 2020, 9:47 PM

                      @guy038 Thanks Guy. I know how to calculate the checksum but so does N++ and I would like it to be automatically calculated for me when I edit a line.

                      BTW I am still none the wiser as to why my desktop PC only wants to show Intel Hex in monochrome ??

                      A 1 Reply Last reply Aug 12, 2020, 10:28 PM Reply Quote 0
                      • A
                        Alan Kilborn @David Griffiths
                        last edited by Aug 12, 2020, 10:28 PM

                        @David-Griffiths said in Intel Hex not higlighting:

                        I know how to calculate the checksum but so does N++ and I would like it to be automatically calculated for me when I edit a line.

                        This goes beyond the responsibility N++ signs up for. :-)
                        You could certainly do something for it with a scripting plugin, e.g. Pythonscript.

                        D 1 Reply Last reply Aug 13, 2020, 1:05 PM Reply Quote 0
                        • D
                          David Griffiths @Alan Kilborn
                          last edited by Aug 13, 2020, 1:05 PM

                          @Alan-Kilborn Yes I agree it is more than I expected from N++ but as it does know how to calculate the checksum, it would be a very small step to add a right click or such that inserted the correct value, would it not?

                          A 1 Reply Last reply Aug 13, 2020, 1:15 PM Reply Quote 0
                          • A
                            Alan Kilborn @David Griffiths
                            last edited by Aug 13, 2020, 1:15 PM

                            @David-Griffiths said in Intel Hex not higlighting:

                            N++ … does know how to calculate the checksum

                            Notepad++ code has absolutely no idea how to do this checksum.
                            It isn’t doing it.
                            The underlying lexer is doing it, which comes from a separate project, called Scintilla.

                            D 1 Reply Last reply Aug 15, 2020, 12:24 PM Reply Quote 1
                            • D
                              David Griffiths @Alan Kilborn
                              last edited by Aug 15, 2020, 12:24 PM

                              @Alan-Kilborn Thanks for clarifying Alan. My knowledge of the inner workings of N++ needs work :-)

                              E 1 Reply Last reply Aug 15, 2020, 1:37 PM Reply Quote 0
                              • E
                                Ekopalypse @David Griffiths
                                last edited by Aug 15, 2020, 1:37 PM

                                @David-Griffiths

                                Sorry, I was busy with some personal matters.
                                Here’s a python script that hopefully does what you want. If there is something else you might want to have or it doesn’t do what you want it to be done I would kindly ask to use the github issue tracker in my repo.

                                D 1 Reply Last reply Oct 29, 2021, 11:40 AM Reply Quote 2
                                • D
                                  David Griffiths @Ekopalypse
                                  last edited by Oct 29, 2021, 11:40 AM

                                  @Ekopalypse Thanks for posting this - sorry I only just noticed it. Better late than never :-)
                                  Where should I save the file and how do invoke the script?
                                  Any ideas why I am not seeing the highlighting on my Win10 PC?

                                  A 1 Reply Last reply Oct 29, 2021, 12:02 PM Reply Quote 1
                                  • A
                                    Alan Kilborn @David Griffiths
                                    last edited by Alan Kilborn Oct 29, 2021, 12:03 PM Oct 29, 2021, 12:02 PM

                                    @David-Griffiths said in Intel Hex not higlighting:

                                    sorry I only just noticed it. Better late than never

                                    Wow, that was a long layoff…

                                    Where should I save the file and how do invoke the script?

                                    There are some basic instructions for this type of scripting HERE. See the PeterJones Jan 19, 2021 4:12pm posting.

                                    1 Reply Last reply Reply Quote 0
                                    • D
                                      David Griffiths
                                      last edited by Oct 30, 2021, 5:27 AM

                                      @Alan-Kilborn Thank you Alan. I have installed the PythonScript plugin and created the script.
                                      When I open a file containing 9 lines of Intel Hex and run the script, precisely nothing happens ??
                                      This is on my desktop which does not show the highlighting of the hex file. I then tried on my laptop, which does the highlighting correctly, and the script works.
                                      So back to the original question, why does my desktop not show the highlighting? Both running NPP v8.1.5

                                      P 1 Reply Last reply Oct 30, 2021, 4:45 PM Reply Quote 0
                                      • P
                                        PeterJones @David Griffiths
                                        last edited by Oct 30, 2021, 4:45 PM

                                        @David-Griffiths said in Intel Hex not higlighting:

                                        When I open a file containing 9 lines of Intel Hex and run the script, precisely nothing happens ??

                                        I doubt it’s actually nothing. Fortunately, PythonScript has a console which is useful for debugging: go to the PythonScript menu and show the console, and see if it shows any errors after you run the script.

                                        This is on my desktop which does not show the highlighting of the hex file. I then tried on my laptop, which does the highlighting correctly, and the script works.

                                        So obviously there is something different between the two setups.

                                        So back to the original question, why does my desktop not show the highlighting? Both running NPP v8.1.5

                                        My magic eight ball says “Reply hazy, try again” and then “Concentrate and ask again”. In other words: you haven’t given us enough to go on. You’ll have to provide more information, including the PythonScript console results, and maybe some example data.

                                        1 Reply Last reply Reply Quote 0
                                        • D
                                          David Griffiths
                                          last edited by Oct 30, 2021, 8:05 PM

                                          David Griffiths
                                          David Griffiths Aug 15, 2020, 10:24 PM

                                          @Alan-Kilborn
                                          I doubt it’s actually nothing. Well actually it is! The console shows nothing at all after the ‘ready’ when I run the script ??

                                          Python 2.7.18 (v2.7.18:8d21aa21f2, Apr 20 2020, 13:25:05) [MSC v.1500 64 bit (AMD64)]
                                          Initialisation took 297ms
                                          Ready.

                                          This seems to be reporting an AMD processor which it isn’t! It is an Intel i5-6400 ??

                                          In other words: you haven’t given us enough to go on. Fair comment, but I am not sure what I can add? Here is a sample of the data but I doubt that is relevant.

                                          :10000000FF050102FFFFFFFFFFFFFFFFFFFF09FFF5
                                          :10001000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0
                                          :10002000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0
                                          :10003000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0
                                          :10004000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0
                                          :10005000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB0
                                          :10006000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0
                                          :10007000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF90
                                          :00000001FF
                                          

                                          Both machines are running Win10 Home. Obviously the screen drivers are different. Both running the latest version of NPP.

                                          Are there any config files I can send?

                                          Cheers, DG

                                          A P 3 Replies Last reply Oct 30, 2021, 9:19 PM Reply Quote 0
                                          • First post
                                            Last post
                                          The Community of users of the Notepad++ text editor.
                                          Powered by NodeBB | Contributors