| 111 | } |
| 112 | |
| 113 | int BTLibBoard::release_session () |
| 114 | { |
| 115 | if (dll_loader != NULL) |
| 116 | { |
| 117 | dll_loader->free_library (); |
| 118 | delete dll_loader; |
| 119 | dll_loader = NULL; |
| 120 | } |
| 121 | initialized = false; |
| 122 | return (int)BrainFlowExitCodes::STATUS_OK; |
| 123 | } |
| 124 | |
| 125 | int BTLibBoard::config_board (std::string config, std::string &response) |
| 126 | { |
nothing calls this directly
no test coverage detected