File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 1
1
@startuml
2
2
class NFCController {
3
- +void set_delegate(NFCControllerDelegate* delegate)
3
+ +NFCController(NFCControllerDriver* driver, events::EventQueue* queue)
4
+ +void set_delegate(NFCController::Delegate* delegate)
4
5
+nfc_rf_protocols_bitmask_t get_supported_rf_protocols() const
5
6
+nfc_err_t configure_rf_protocols(nfc_rf_protocols_bitmask_t rf_protocols)
6
7
+nfc_err_t start_discovery()
7
8
+nfc_err_t cancel_discovery()
8
9
}
9
10
10
- abstract class NFCControllerDelegate {
11
- +void on_discovery_terminated(nfc_discovery_terminated_reason_t reason)
12
- +void on_nfc_target_discovered(const mbed::SharedPtr<NFCRemoteTarget>& target)
13
- +void on_nfc_initiator_discovered(const mbed::SharedPtr<NFCRemoteInitiator>& initiator)
11
+ abstract class NFCController::Delegate {
12
+ +{abstract} void on_discovery_terminated(nfc_discovery_terminated_reason_t reason)
13
+ +{abstract} void on_nfc_target_discovered(const mbed::SharedPtr<NFCRemoteTarget>& target)
14
+ +{abstract} void on_nfc_initiator_discovered(const mbed::SharedPtr<NFCRemoteInitiator>& initiator)
14
15
}
15
16
16
- NFCController o-- NFCControllerDelegate
17
+ abstract class NFCControllerDriver {
18
+ +{abstract} void initialize(scheduler_timer_t* pTimer)
19
+ +{abstract} transceiver_t* get_transceiver()
20
+ }
21
+
22
+ NFCController o-- NFCController::Delegate
23
+ NFCController o-- NFCControllerDriver
24
+
17
25
@enduml
You can’t perform that action at this time.
0 commit comments