Support for Chibios compilation

Remove some warnings, change the include paths.
This commit is contained in:
Fred Sundvik
2016-02-21 23:17:59 +02:00
parent 8cbfe79dd9
commit 6873b17117
19 changed files with 79 additions and 42 deletions

View File

@ -22,6 +22,13 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#ifndef SERIAL_LINK_BYTE_STUFFER_H
#define SERIAL_LINK_BYTE_STUFFER_H
#include <stdint.h>
void init_byte_stuffer(void);
void byte_stuffer_recv_byte(uint8_t link, uint8_t data);
void byte_stuffer_send_frame(uint8_t link, uint8_t* data, uint16_t size);
#endif