Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    Special characters in UI

    Scheduled Pinned Locked Moved
    PanelDue
    4
    14
    1.7k
    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.
    • dc42undefined
      dc42 administrators
      last edited by

      How are you uploading the file directly from slic3r? If you are using a plugin, perhaps that plugin doesn't handle UTF8-encoded filenames.

      Duet WiFi hardware designer and firmware engineer
      Please do not ask me for Duet support via PM or email, use the forum
      http://www.escher3d.com, https://miscsolutions.wordpress.com

      1 Reply Last reply Reply Quote 0
      • marekzehraundefined
        marekzehra
        last edited by

        @dc42:

        The fonts used in PanelDue currently have Unicode code points 0x00 to 0xFF. Some of the characters you want are a little higher than that. So the first thing you need to do is extend the font range to include the extra characters. It looks to me that you need to go up to 0x17F.

        After that, it should just be a case of ensuring that all the text strings are encoded in UTF8 format. If you are getting rectangles everywhere then I suspect the editor you are using isn't saving the file in UTF8 format.

        HTH David

        Thanks.
        For starters I checked files for encoding, fixed that and reflash. Some characters worked. Nice πŸ™‚
        Second I tried to expand font array, but it is limited by uint8_t which has max value 255. Now I have to dig a litle deeper and use uint16_t.

        1 Reply Last reply Reply Quote 0
        • dc42undefined
          dc42 administrators
          last edited by

          It looks to me that the following changes are needed:

          • members firstChar and lastChar of struct FontDescriptor need to be changed from uint8_t to uint16_t
          • parameter to writeNative needs to be changed to uint16_t
          • in UTFT::writeNative, translation should only be attempted if the character is <= 0xFF (but I don't think the translation mechanism is needed any more)
          • a few changes are also needed to UTFT::write.

          I will make these changes in the next beta of PanelDueFirmware.

          Duet WiFi hardware designer and firmware engineer
          Please do not ask me for Duet support via PM or email, use the forum
          http://www.escher3d.com, https://miscsolutions.wordpress.com

          1 Reply Last reply Reply Quote 0
          • darookeeundefined
            darookee
            last edited by

            @dc42:

            How are you uploading the file directly from slic3r? If you are using a plugin, perhaps that plugin doesn't handle UTF8-encoded filenames.

            Slic3r supports uploading to the Duet natively, it's in Printer Settings -> Print server upload. I'm not sure when the support was added but I'm using it for quite a while now.

            1 Reply Last reply Reply Quote 0
            • c310undefined
              c310
              last edited by

              How are you uploading the file directly from slic3r? If you are using a plugin, perhaps that plugin doesn't handle UTF8-encoded

              i upload directly from slic3r. there is a special option for duet in printer settings. no plug-ins at all… see below

              1 Reply Last reply Reply Quote 0
              • marekzehraundefined
                marekzehra
                last edited by

                @dc42:

                It looks to me that the following changes are needed:

                • members firstChar and lastChar of struct FontDescriptor need to be changed from uint8_t to uint16_t
                • parameter to writeNative needs to be changed to uint16_t
                • in UTFT::writeNative, translation should only be attempted if the character is <= 0xFF (but I don't think the translation mechanism is needed any more)
                • a few changes are also needed to UTFT::write.

                I will make these changes in the next beta of PanelDueFirmware.

                Looking forward to that πŸ˜‰

                1 Reply Last reply Reply Quote 0
                • dc42undefined
                  dc42 administrators
                  last edited by

                  I have made those changes, tested them, and committed them to github. I will make further unrelated changes before I do a release.

                  Duet WiFi hardware designer and firmware engineer
                  Please do not ask me for Duet support via PM or email, use the forum
                  http://www.escher3d.com, https://miscsolutions.wordpress.com

                  1 Reply Last reply Reply Quote 0
                  • marekzehraundefined
                    marekzehra
                    last edited by

                    @dc42:

                    I have made those changes, tested them, and committed them to github. I will make further unrelated changes before I do a release.

                    Great. I've now tested build and getting ready generated font characters (GLCD Font Creator not cooperating as I expected, needs a little bit tuning) and translations. I'll hopefully finish it soon.

                    1 Reply Last reply Reply Quote 0
                    • marekzehraundefined
                      marekzehra
                      last edited by

                      Ok, now it's working. I've created pull request on github repo. Characters are generated and tested.

                      Interesting issue was, that GLCD Font Creator can't create characters after 0xFF. So I had to setup lcd-image-converter with some postprocessing scripts to get it done. But now it's perfect πŸ˜‰

                      Testing screen:

                      1 Reply Last reply Reply Quote 0
                      • c310undefined
                        c310
                        last edited by

                        file system is still an issue with unicode file names. 1.21 RC3

                        1 Reply Last reply Reply Quote 0
                        • dc42undefined
                          dc42 administrators
                          last edited by

                          @c310:

                          file system is still an issue with unicode file names. 1.21 RC3

                          Can you give an example? I keep some files with UTF8 characters in them on my SD card, and they are still displayed correctly, with the following limitations:

                          • PanelDueFirmware prior to 1.20RC3 only displays characters up to U+0x00FF
                          • PanelDueFirmware 1.20RC3 (which I expect to release later today) on a 5" or 7" panel displays characters up to U+0x017F
                          • PanelDueFirmware 1.20RC3 on a 4.3" panel doesn't display characters U+0x0100 to U_0x017F correctly because the font table is wrong

                          Duet WiFi hardware designer and firmware engineer
                          Please do not ask me for Duet support via PM or email, use the forum
                          http://www.escher3d.com, https://miscsolutions.wordpress.com

                          1 Reply Last reply Reply Quote 0
                          • First post
                            Last post
                          Unless otherwise noted, all forum content is licensed under CC-BY-SA