fixed typo

This commit is contained in:
Markus Fröschle
2015-01-15 15:16:51 +00:00
parent 102876cdf6
commit f8c5b12ec4
3 changed files with 5 additions and 4 deletions

View File

@@ -197,3 +197,4 @@ util/printf_helper.S
util/wait.c
bas.lk.in
i2c/i2c.c
Makefile

View File

@@ -1,4 +1,4 @@
# # Makefile for Firebee BaS
# Makefile for Firebee BaS
#
# This Makefile is meant for cross compiling the BaS with Vincent Riviere's cross compilers.
# If you want to compile native on an Atari (you will need at least GCC 4.6.3), set
@@ -9,7 +9,7 @@
# can be either "Y" or "N" (without quotes). "Y" for using the m68k-elf-, "N" for using the m68k-atari-mint
# toolchain
COMPILE_ELF=N
COMPILE_ELF=Y
ifeq (Y,$(COMPILE_ELF))
TCPREFIX=m68k-elf-

View File

@@ -10,7 +10,7 @@ void i2c_set_frequency(int hz)
{
}
int i2c_read(int address, char *data, int lengt, bool repeated)
int i2c_read(int address, char *data, int length, bool repeated)
{
return 0;
}