Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: TargetManager mbed
TestTargetManager.hpp
00001 #ifndef TEST_TARGET_MANAGER_HPP 00002 #define TEST_TARGET_MANAGER_HPP 00003 00004 #include <vector> 00005 #include "NerfusTickerInterface.hpp" 00006 #include "TargetManagerInterface.hpp" 00007 00008 class TestTargetManager : public TargetManagerInterface 00009 { 00010 public: 00011 TestTargetManager(std::vector<NerfusTickerInterface*>& target_timeout_tickers); 00012 virtual void execute(const std::vector<uint8_t>& target_info_bytes, int *address); 00013 virtual void target_hit(int target_number); 00014 virtual void target_missed(int target_number); 00015 00016 private: 00017 std::vector<NerfusTickerInterface*>& target_timeout_tickers; 00018 }; 00019 00020 #endif
Generated on Thu Jul 21 2022 23:56:01 by
1.7.2