morse.h 202 B

1234567891011
  1. // Morse Code Playback Functions
  2. // that's actually appropriate for an embedded system
  3. // VK2CJB 2020-03
  4. #ifndef __MORSE_H
  5. #define __MORSE_H
  6. void send_morse (const char* message);
  7. #endif //__MORSE_H