1 |
9 |
nussgipfel |
2008-Nov-21 Christoph Zimmermann
|
2 |
|
|
|
3 |
|
|
* firmware/lib/ser.c
|
4 |
|
|
added library functions for rs232 communication. based on a source
|
5 |
|
|
code provided by sdcc, modified to use the fast baudrate generator
|
6 |
|
|
of the FX2
|
7 |
|
|
|
8 |
|
|
* firmware/include/debugprint.h
|
9 |
|
|
macro definitions to send debug messages to stdout using the
|
10 |
|
|
printf_small function. (you have to provide your own putchar and
|
11 |
|
|
getchar function as explained in the sdcc documenttion).
|
12 |
|
|
it provides different levels of output messages, you can select
|
13 |
|
|
the desired level in the make file. all unused function calls are
|
14 |
|
|
removed by the preprocessor
|
15 |
|
|
|
16 |
|
|
|
17 |
|
|
2006-Nov-19 Christoph Zimmermann
|
18 |
|
|
|
19 |
|
|
* firmware/src/Makefile.unix
|
20 |
|
|
fixed the last error in the make file. the order of the object
|
21 |
|
|
files is now correct for the linker (the irq vector tables have to
|
22 |
|
|
come first). original usrp fw is now working on the dev board
|
23 |
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
|
|
#
|
27 |
|
|
# Copyright 2008 MicroLab (Berne University of Applied Science)
|
28 |
|
|
#
|
29 |
|
|
# This file is part of GECKO3COM
|
30 |
|
|
#
|
31 |
|
|
# GECKO3COM; you can redistribute it and/or modify
|
32 |
|
|
# it under the terms of the GNU General Public License as published by
|
33 |
|
|
# the Free Software Foundation; either version 3, or (at your option)
|
34 |
|
|
# any later version.
|
35 |
|
|
#
|
36 |
|
|
# GECKO3COM is distributed in the hope that it will be useful,
|
37 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
38 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
39 |
|
|
# GNU General Public License for more details.
|
40 |
|
|
#
|
41 |
|
|
# You should have received a copy of the GNU General Public License
|
42 |
|
|
# along with GNU Radio; see the file COPYING. If not, write to
|
43 |
|
|
# the Free Software Foundation, Inc., 51 Franklin Street,
|
44 |
|
|
# Boston, MA 02110-1301, USA.
|
45 |
|
|
#
|