aboutsummaryrefslogtreecommitdiff
path: root/tests/test_spi.c
blob: 866f6e8ae1dda8c909fc3b03bb7da4702957db5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "arch/stm32l4xxx/peripherals/spi.h"
#include "test_harness.h"

TEST(spi, smoke)
{
  __IO spi_t* spi = &SPI1;
  spi->s_r = 1;

  return 0;
}