Skip to content

Commit

Permalink
Update tp 0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
dashesy committed Sep 13, 2013
1 parent ffb917d commit 30554f7
Show file tree
Hide file tree
Showing 44 changed files with 6,727 additions and 3,897 deletions.
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://sourceforge.net/projects/cctool/
George Stark george-u@yandex.com
24 changes: 24 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,28 @@
03/12/2012 version 0.16
* fixed CC debugger device USB PID value

06/06/2012 version 0.18
* fixed wrong CC111x identification
* added reference in linux man pages format

09/26/2012 version 0.20
* added CC2541 target signature
* fixed mac addresses reading for CC254x and CC253x units
* added options --write-mac-address and --preserve-mac-address
* fixed lock bit writing
* fixed mac address byte order

10/26/2012 version 0.22
* added support for SmartRF04EB V1.1 programmer board (experemental)
* added command line option --flash-size
* fixed mac address writing for CC243x

11/24/2012 version 0.24
* updated autoconf scripts to support Mac OS
* lock type for --lock option now may be specifed by string like like debug, boot etc
* added support for CC2543, CC2544, CC2545 targets (experemental)
* bug fixing

03/01/1013 version 0.26
* fixed bug with -d option
* handle programmer devices those have no iProduct string descriptor
33 changes: 32 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,2 +1,33 @@
SUBDIRS=src
ACLOCAL_AMFLAGS = -I m4
man_MANS = man/cc-tool.1

AM_CPPFLAGS = $(LIBUSB_CFLAGS) $(BOOST_CPPFLAGS) -O3 -Isrc/programmer -Isrc/common -Isrc/usb -Isrc -Isrc/application
AM_LDFLAGS = \
$(BOOST_FILESYSTEM_LDFLAGS) \
$(BOOST_REGEX_LDFLAGS) \
$(BOOST_SYSTEM_LDFLAGS) \
$(BOOST_PROGRAM_OPTIONS_LDFLAGS)

# $(BOOST_THREADS_LDFLAGS)

LDADD = $(LIBUSB_LIBS)

LIBS = -s \
$(BOOST_FILESYSTEM_LIBS) \
$(BOOST_REGEX_LIBS) \
$(BOOST_SYSTEM_LIBS) \
$(BOOST_PROGRAM_OPTIONS_LIBS)

# $(BOOST_THREADS_LIBS)

bin_PROGRAMS=cc-tool
cc_tool_SOURCES=src/main.cpp src/application/cc_flasher.cpp src/application/cc_base.cpp \
src/common/log.cpp src/common/common.cpp src/common/timer.cpp \
src/usb/usb_device.cpp \
src/data/binary_file.cpp src/data/data_section.cpp src/data/data_section_store.cpp \
src/data/file.cpp src/data/hex_file.cpp src/data/read_target.cpp \
src/data/progress_watcher.cpp \
src/programmer/cc_253x_254x.cpp src/programmer/cc_251x_111x.cpp \
src/programmer/cc_243x.cpp src/programmer/cc_programmer.cpp \
src/programmer/cc_unit_driver.cpp src/programmer/cc_unit_info.cpp

Loading

0 comments on commit 30554f7

Please sign in to comment.