This commit is contained in:
Your Name
2024-04-27 03:24:56 -05:00
parent 680e909d73
commit 4401b71958
21 changed files with 1983 additions and 6932 deletions

22
selfdrive/boardd/main.cc Normal file
View File

@@ -0,0 +1,22 @@
#include <cassert>
#include "selfdrive/boardd/boardd.h"
#include "common/swaglog.h"
#include "common/util.h"
#include "system/hardware/hw.h"
int main(int argc, char *argv[]) {
LOGW("starting boardd");
if (!Hardware::PC()) {
int err;
err = util::set_realtime_priority(54);
assert(err == 0);
err = util::set_core_affinity({4});
assert(err == 0);
}
std::vector<std::string> serials(argv + 1, argv + argc);
boardd_main_thread(serials);
return 0;
}