fix indentation (#19925)

old-commit-hash: 511bad6a9f
commatwo_master
Dean Lee 4 years ago committed by GitHub
parent b3287a405b
commit 2f3ae6ba78
  1. 4
      selfdrive/boardd/boardd.cc
  2. 2
      selfdrive/boardd/panda.cc

@ -249,11 +249,11 @@ void can_recv_thread() {
uint64_t next_frame_time = nanos_since_boot() + dt;
while (!do_exit && panda->connected) {
can_recv(pm);
can_recv(pm);
uint64_t cur_time = nanos_since_boot();
int64_t remaining = next_frame_time - cur_time;
if (remaining > 0){
if (remaining > 0) {
std::this_thread::sleep_for(std::chrono::nanoseconds(remaining));
} else {
if (ignition){

@ -330,7 +330,7 @@ int Panda::can_receive(kj::Array<capnp::word>& out_buf) {
// Not sure if this can happen
if (recv < 0) recv = 0;
if (recv == RECV_SIZE) {
LOGW("Receive buffer full");
}

Loading…
Cancel
Save