| 170 | } |
| 171 | |
| 172 | static void _vbus_indicate(enum rt_vbus_event_id eve, unsigned char chnr) |
| 173 | { |
| 174 | RT_ASSERT(eve < sizeof(_vbus_rx_indi)/sizeof(_vbus_rx_indi[0])); |
| 175 | |
| 176 | if (_vbus_rx_indi[eve][chnr].indicate) |
| 177 | _vbus_rx_indi[eve][chnr].indicate(_vbus_rx_indi[eve][chnr].ctx); |
| 178 | } |
| 179 | |
| 180 | #define _BUS_OUT_THRD_STACK_SZ 2048 |
| 181 | #define _BUS_OUT_THRD_PRIO 8 |
no outgoing calls
no test coverage detected