Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / simulator / libsim / spi.c @ 986

History | View | Annotate | Download (355 Bytes)

1
/**
2
 * @file spi.c
3
 * @brief Basic SPI module to handle encoders
4
 * @author Colony Project, CMU Robotics Club
5
 *        Need to move spi.h include into dragonfly_lib.h when stable
6
 **/
7

    
8
#include "spi.h"
9
#include "util.h"
10

    
11
void spi_init (spi_fun_recv_t recv_func, spi_fun_recv_complete_t recv_complete_func)
12
{
13
}
14

    
15
void spi_transfer(char bytes)
16
{
17
        UNIMPLEMENTED
18
}
19