aboutsummaryrefslogtreecommitdiff
path: root/02-usart/tests/test_spi.c
blob: d6cc24e5b02bcdd5e55aa99b97723e94e6a44dc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "test_harness.h"

#include "core/spi.h"

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

  return 0;
}