| 322 | } |
| 323 | |
| 324 | int BrainBit::release_session () |
| 325 | { |
| 326 | if (initialized) |
| 327 | { |
| 328 | if (is_streaming) |
| 329 | { |
| 330 | stop_stream (); |
| 331 | } |
| 332 | free_packages (); |
| 333 | initialized = false; |
| 334 | free_listeners (); |
| 335 | free_channels (); |
| 336 | } |
| 337 | return NeuromdBoard::release_session (); |
| 338 | } |
| 339 | |
| 340 | void BrainBit::read_thread () |
| 341 | { |
nothing calls this directly
no test coverage detected