Skip to content

Instantly share code, notes, and snippets.

@Aunsiels
Created February 4, 2015 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Aunsiels/a26c4d7ab16e942b0d42 to your computer and use it in GitHub Desktop.
Save Aunsiels/a26c4d7ab16e942b0d42 to your computer and use it in GitHub Desktop.
with Stm32.USB; use Stm32.USB;
procedure USBComm is
C : Character;
begin
loop
C := Read;
Send("Received : " & C & ". ");
end loop;
end USBComm;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment