Morse Code Keyer and Commodore 64 | Part Three

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 พ.ย. 2024

ความคิดเห็น • 6

  • @RudysRetroIntel
    @RudysRetroIntel 7 หลายเดือนก่อน +2

    Wow! Excellent progress!! Very cool, and thanks for sharing

    • @JosipRetroBits
      @JosipRetroBits  6 หลายเดือนก่อน

      Thank You Rudy :) Well I could implement the whole Morse code table but this is just demo so... Cheers!

  • @akkudakkupl
    @akkudakkupl 7 หลายเดือนก่อน +2

    You could do the table as a binary tree. Lets say dot means 0 and dash means 1. Then you need a table of 32 elements (because the tree has a depth of 5). You would construct the pointer by left shifting your dot and dash representations. So lets say you receive morse code for 8 (because numbers are coded by 5 symbols) - - - . . => 11100 => go to table element 28.
    When you get illegal code you could print an error, wait for a pause in received code (start of next character) and decode next character.

    • @JosipRetroBits
      @JosipRetroBits  6 หลายเดือนก่อน +1

      Yes, I should have done this using a binary tree, it would be more professional and maybe even easier to implement in the code but... :) Maybe I will rewrite the code. Thanks :) ...and Thank You for watching! Cheers!

  • @CaptainCommodore
    @CaptainCommodore 6 หลายเดือนก่อน +1

    Very nice explanation

    • @JosipRetroBits
      @JosipRetroBits  6 หลายเดือนก่อน

      Thank You :) Cheers!