You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
486 B
28 lines
486 B
// minimal code to fake a panda for tests
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "opendbc/safety/board/utils.h"
|
|
|
|
#define ALLOW_DEBUG
|
|
|
|
void print(const char *a) {
|
|
printf("%s", a);
|
|
}
|
|
|
|
void puth(unsigned int i) {
|
|
printf("%u", i);
|
|
}
|
|
|
|
typedef struct {
|
|
uint32_t CNT;
|
|
} TIM_TypeDef;
|
|
|
|
TIM_TypeDef timer;
|
|
TIM_TypeDef *MICROSECOND_TIMER = &timer;
|
|
uint32_t microsecond_timer_get(void);
|
|
|
|
uint32_t microsecond_timer_get(void) {
|
|
return MICROSECOND_TIMER->CNT;
|
|
}
|
|
|