Commit Graph

148 Commits

Author SHA1 Message Date
Grigori Goronzy
f8e8d66baa Merge pull request #13 from laborer/master
Add automatic protocol detection
2016-05-12 00:11:10 +02:00
laborer
afba6c6805 Add automatic protocol detection
The model of the target MCU and its protocol is detected using model ID provided in the first packet (status packet) from the MCU.

Tested working models include,
IAP15F2K61S2 (BSL version: 7.1.4S, protocol: stc15)
STC15F104W (BSL version: 7.1.4Q, protocol: stc15)
TC11F02E (BSL version: 6.5K, protocol: stc12)
STC10F04XE (BSL version: 6.5J, protocol: stc12)
STC12C5A16S2 (BSL version: 6.2I, protocol: stc12)
STC12C5608AD (BSL version: 6.0G, protocol: stc12)
STC12C2052 (BSL version: 5.8D, protocol: stc12a)
STC90C52RC (BSL version: 4.3C, protocol: stc89)
STC89C52RC (BSL version: 4.3C, protocol: stc89)
STC89C54RD+ (BSL version: 4.3C, protocol: stc89)
STC15F104E (BSL version: 6.7Q, protocol: stc15a)

STC15F104E uses a different status packet protocol than other MCUs; it waits for an ACK packet before sending out the status packet.  Another problem is that STC15F104E shares the same model magic with STC15F104W.  Fortunately, these two models can be differentiated by their BSL version numbers.
2016-05-11 15:14:13 -04:00
Grigori Goronzy
d1f464c387 Raise default handshake baudrate to 2400
See grigorig/stcgal#12 for more information.
2016-04-15 11:13:54 +02:00
Jens J
e268b282cb Update dump-mcu.py for stc-isp 6.85K
v2: squash "Update model DB"
2016-04-14 18:53:45 +02:00
Grigori Goronzy
f9a19c927c Update README.md 2016-04-02 23:13:51 +02:00
Grigori Goronzy
372f854c77 Add autoreset feature via DTR control line
This is inspired by Arduino.  Directly before connect, DTR is asserted
for 0.5 seconds and then deasserted again.  With a small external
circuit, the MCU can be power-cycled with this control signal.
In case the MCU draws very little power, it may even be possible to
supply power directly from the DTR pin.
2016-04-02 23:00:07 +02:00
Grigori Goronzy
41cabb587b frontend: also catch I/O errors in pulse phase 2016-01-17 15:16:43 +01:00
Grigori Goronzy
6a38127c0d Fix regression with some STC15 parts
The cpu core voltage setting is only available on newer parts, so do not
try to support it on older ones. The option packet is too short on some
parts, which resulted in an assertion hit.

There may be a nicer solution, but this works for now.

Fixes grigorig/stcgal#6.
2016-01-05 07:03:59 +01:00
Grigori Goronzy
d3911870c3 Fix initialization with CH340 UARTs
Initialization is messed up on older Linux kernels and that results
in 9600 baud being used unconditionally in some cases. Setting the
baud rate separately seems to work around this successfully.

Fixes grigorig/stcgal#5.
2015-12-15 20:22:25 +01:00
Grigori Goronzy
293ce2c749 Add STC15W408AS to compatibility list
Tested and works fine.
2015-12-12 01:03:14 +01:00
Grigori Goronzy
f13650a352 stc15: remove extra space in output 2015-12-11 01:50:55 +01:00
Grigori Goronzy
f5574f30e3 frontend: rename code_binary/eeprom_binary
We don't accept binary only anymore.
2015-12-11 01:49:45 +01:00
Grigori Goronzy
bc6f9da03e frontend: nicer description 2015-12-11 01:38:46 +01:00
Grigori Goronzy
6f0ee0387d serial: flush input on connect
Sometimes there's some garbage in the input buffer and we aren't
interested in that.
2015-12-11 01:21:06 +01:00
Grigori Goronzy
cc20c85ad0 Add STC15W4K56S4 dump 2015-12-11 01:14:51 +01:00
Grigori Goronzy
b71b6535c4 Add STC15W4K56S4 to compatibility list
Seems to work just fine for me now.
2015-12-11 01:13:35 +01:00
Grigori Goronzy
76b3418f0a stc15: add core voltage option (STC15W)
This is used on STC15W4 series and has no function on earlier MCUs.
There is no good way to filter options, unfortunately.
2015-12-11 01:11:53 +01:00
Grigori Goronzy
11b165c02c stc15a: set pulse timeout for handshake 2015-12-11 00:40:22 +01:00
Grigori Goronzy
9f42ef29f3 stc15: use generic/new sync sequence for handshake
Use the newer sync sequence. Refactor the pulse() function to make
it somewhat generic, so we can use it without worrying about writing
the exactly right number of bytes.

This seems to get STC15W4 series chips working.
2015-12-11 00:39:59 +01:00
Grigori Goronzy
432fed8af1 Add STC11F02E to compatibility list 2015-12-06 19:45:29 +01:00
Grigori Goronzy
7336673655 Add STC15L2K61S2 to README
See https://github.com/grigorig/stcgal/issues/3
2015-11-30 00:51:51 +01:00
Andrew Andrianov
0548582dd4 Add initial debian packaging info
v2 (Grigori Goronzy): Simplify with pybuild, fix some smaller issues,
license as MIT.

Signed-off-by: Andrew Andrianov <andrew@ncrmnt.org>
2015-11-25 23:03:25 +01:00
Grigori Goronzy
e0afd851ae Let MCU detection recover faster
Use small timeouts to recover faster if there is a misdetection for
whatever reason (truncated packet, user program toggles port, etc.).
2015-11-25 22:19:54 +01:00
Grigori Goronzy
b72c5a60fb ihex: fix bytearray overallocation 2015-11-25 03:06:57 +01:00
Grigori Goronzy
8d800d1090 ihex: fix non-contiguous ranges
I thought this thing worked, but it turns out it is horribly broken.
Rewrite extraction and use bytearray, which is more efficient anyway.
2015-11-25 01:35:20 +01:00
Grigori Goronzy
c0a9b381c9 Update TODO 2015-11-24 23:13:21 +01:00
Grigori Goronzy
0ed9ac9229 stc15a,stc15: properly set IAP wait states
Refactor the old code from stc12a/stc12 and use it in stc15a/stc15
to set the IAP wait states. Verified by timing the erase time.
2015-11-24 23:13:21 +01:00
Grigori Goronzy
d0a9b61482 Update README
Make option table nicer, some other minor stuff.
2015-11-24 21:16:43 +01:00
Grigori Goronzy
778cb63e36 stc15: add optional write finish packet (BSL 7.2+) 2015-11-24 21:00:56 +01:00
Grigori Goronzy
b55fc1fcf4 stc15: print BSL minor version
The BSL version has the form X.Y.ZW in newer BSLs. The extra digit
is stored in another info packet byte. Print the version correctly.
2015-11-24 20:48:48 +01:00
Grigori Goronzy
3a81844a17 frontend: prefer to catch SerialException
It's a subclass of IOError, which we were catching first.
2015-11-24 01:42:53 +01:00
Grigori Goronzy
d318384c25 stc15: handle uncalibrated chips 2015-11-24 01:37:22 +01:00
Grigori Goronzy
ef84cf3cd5 Update README again
Just some minor fixes.
2015-11-24 00:44:34 +01:00
Grigori Goronzy
6601cb91f1 Update README 2015-11-24 00:41:29 +01:00
Grigori Goronzy
63327e3498 frontend: add Intel HEX support
Add Intel HEX support with the help of the IHex library. IHex needed
some modifications to make it work with Python 3.

Intel HEX files are autodetected, based on file extension (.hex,
.ihx or .ihex).
2015-11-24 00:36:44 +01:00
Grigori Goronzy
f452ca226e frontend: return instead of exit 2015-11-23 23:48:58 +01:00
Grigori Goronzy
7317f9e3a7 frontend: use 1200 BPS for handshake by default
It's not much slower but makes frequency measurement and calibration
more reliable.
2015-11-23 23:44:50 +01:00
Grigori Goronzy
ad57488e4f Unify options
Eradicate inconsistencies, get it in sync with docs.
2015-11-23 23:30:29 +01:00
Grigori Goronzy
b6c87fb532 Add option descriptions to README 2015-11-23 23:29:22 +01:00
Grigori Goronzy
3966e2e109 Merge branch 'packaging' 2015-11-23 22:37:49 +01:00
Grigori Goronzy
14a8b061c1 Clean up TODO 2015-11-23 22:36:11 +01:00
Grigori Goronzy
a5795dbee8 Add gitignore
Especially ignore all the cruft from disttools/setuptools.
2015-11-23 22:32:39 +01:00
Grigori Goronzy
bc6447fdc9 Add missing stdout flush calls
This makes the progress display much more useful.
2015-11-23 22:23:50 +01:00
Grigori Goronzy
af35a6ba51 setup: add metadata 2015-11-23 22:19:21 +01:00
Grigori Goronzy
2bf43d161a Update README 2015-11-23 22:19:21 +01:00
Grigori Goronzy
b96bc39948 setup: use version from package 2015-11-23 22:19:21 +01:00
Grigori Goronzy
bc242390e7 Add packaging infrastructure
Split up single script into a package with multiple modules.
Also add a setuptools control file. With this, stcgal can be
installed like any other program. It's still possible to launch
from the sources directly. stcgal.py has been converted into a
simple launcher.

v2: fix imports
2015-11-23 22:19:06 +01:00
Grigori Goronzy
797dcbccda Update README
Some more info about device options and other misc changes.
2015-11-23 15:24:06 +01:00
Grigori Goronzy
bd41521c6d Add commented dump to stc15a docs 2015-11-22 18:47:24 +01:00
Grigori Goronzy
5b4f9d0ef0 Add stc89 and stc12a dumps 2015-11-22 18:45:01 +01:00