NAME

AnyEvent::ITM - Debug ITM/SWD stream deserializer for AnyEvent

VERSION

version 0.100

SYNOPSIS

my $cv = AE::cv;
my $handle = AnyEvent::ITM->handle($file, sub {
  my ( $handle, $itm ) = @_;
  if (ref $itm eq 'ITM::Instrumentation') {
    printf("[%u]%s", $itm->source, $itm->payload);
  }
}, $cv);
$cv->recv;

or without $cv, it will start its own and does $cv->recv on its own.

AnyEvent::ITM->handle($file, sub { ... });

DESCRIPTION

Process ITM/SWO Debugging data.

SUPPORT

IRC

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

Repository

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

Issue Tracker

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

SUPPORT

Source Code

The code is open to the world, and available for you to hack on. Please feel free to browse it and play with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull from your repository :)

https://github.com/Getty/p5-anyevent-itm

git clone https://github.com/Getty/p5-anyevent-itm.git

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.