The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

ITM - ITM/SWD deserializer

VERSION

version 0.002

SYNOPSIS

my $header = itm_header(substr($buf,0,1));
if ($header) {
  my $size = $header->{size} ? $header->{size} : 0;
  my $itm = itm_parse(substr($buf,0,$size+1));
  # do something with $itm
} else {
  print "Unknown ITM packet";
}

DESCRIPTION

SUPPORT

IRC

Join #hardware on irc.perl.org. Highlight Getty for fast reaction :).

Repository

http://github.com/Getty/p5-itm
Pull request and additional contributors are welcome

Issue Tracker

http://github.com/Getty/p5-itm/issues

AUTHOR

Torsten Raudssus <torsten@raudss.us>

COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Torsten Raudssus.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.