-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit dc822e7
Showing
65 changed files
with
50,714 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
George Stark [email protected] |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
11/08/2011 version 0.11 | ||
* first public release, alpha version | ||
|
||
11/10/2011 version 0.12 | ||
* fixed merge data sections bug | ||
* add operation log | ||
|
||
11/12/2011 version 0.13 | ||
* lots of fixes, status changed to beta | ||
|
||
01/11/2012 version 0.15 | ||
* fix compile time error on x64 machines | ||
* minor changes | ||
|
||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
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 | ||
|
Oops, something went wrong.