FreeCalypso > hg > freecalypso-sw
annotate gsm-fw/g23m-aci/aci_ext/Makefile @ 853:ae254ffeaec3
AT command interface works!
The cause of the breakage was the same Nucleus API issue with NU_Create_Timer()
which we encountered at the very beginning of this project with Riviera timers:
the code in uartfax.c from TCS211 was passing 0 as the initial dummy value for
the timer duration, and our FreeNucleus version doesn't like it. The fix is
the same: pass 1 as the initial dummy value instead.
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Thu, 30 Apr 2015 01:46:26 +0000 |
parents | 2ab6e5aa2c36 |
children |
rev | line source |
---|---|
818
2ab6e5aa2c36
aci_ext/aci_ext_pers.c compiles
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
776
diff
changeset
|
1 CC= arm-elf-gcc |
2ab6e5aa2c36
aci_ext/aci_ext_pers.c compiles
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
776
diff
changeset
|
2 LD= arm-elf-ld |
2ab6e5aa2c36
aci_ext/aci_ext_pers.c compiles
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
776
diff
changeset
|
3 |
2ab6e5aa2c36
aci_ext/aci_ext_pers.c compiles
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
776
diff
changeset
|
4 CFLAGS= -O2 -fno-builtin -mthumb-interwork -mthumb |
2ab6e5aa2c36
aci_ext/aci_ext_pers.c compiles
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
776
diff
changeset
|
5 CPPFLAGS=-I. -I../../include -I../../include/condat -I../../gpf/inc \ |
2ab6e5aa2c36
aci_ext/aci_ext_pers.c compiles
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
776
diff
changeset
|
6 -I../../cdginc -I../aci |
2ab6e5aa2c36
aci_ext/aci_ext_pers.c compiles
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
776
diff
changeset
|
7 |
2ab6e5aa2c36
aci_ext/aci_ext_pers.c compiles
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
776
diff
changeset
|
8 ONE_OBJ=aci_ext_pers.o |
2ab6e5aa2c36
aci_ext/aci_ext_pers.c compiles
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
776
diff
changeset
|
9 |
2ab6e5aa2c36
aci_ext/aci_ext_pers.c compiles
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
776
diff
changeset
|
10 all: ${ONE_OBJ} |
776
5a0c58760ae2
gsm-fw/g23m-aci: stub Makefile hierarchy created, hooked into make clean
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
11 |
5a0c58760ae2
gsm-fw/g23m-aci: stub Makefile hierarchy created, hooked into make clean
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
12 clean: |
5a0c58760ae2
gsm-fw/g23m-aci: stub Makefile hierarchy created, hooked into make clean
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
diff
changeset
|
13 rm -f *.[oa] *.out *errs |