15 lines
229 B
C++
15 lines
229 B
C++
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
extern "C" {
|
|
#include "drv/hl854x/gps.c"
|
|
static struct di_drv_hl854x_ctx ctx;
|
|
}
|
|
|
|
TEST(drv_hl854x_gps, init) {
|
|
di_drv_hl854x_gps_init(&ctx);
|
|
}
|