From: darcagn <da...@us...> - 2023-08-17 21:16:39
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A serial program loader for the Dreamcast.". The branch, master has been updated via be68a319e519c2da4bf9ff2b3a33914799dcb6b0 (commit) from 910f91df523a433891efc3ffd7c95853a45d08e2 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit be68a319e519c2da4bf9ff2b3a33914799dcb6b0 Author: Tchan0 <617...@us...> Date: Thu Aug 17 23:09:21 2023 +0200 Update dc-tool.c (#17) correcting N=13 value of the SH-4. ----------------------------------------------------------------------- Summary of changes: host-src/tool/dc-tool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host-src/tool/dc-tool.c b/host-src/tool/dc-tool.c index fbface1..e1b8ff9 100644 --- a/host-src/tool/dc-tool.c +++ b/host-src/tool/dc-tool.c @@ -682,7 +682,7 @@ int change_speed(char *device_name, unsigned int speed) { blread(&c, 1); if(speedhack && (speed == 115200)) - send_uint(111600); /* get dcload to pick N=13 rather than N=12 */ + send_uint(111607); /* get dcload to pick N=13 rather than N=12 */ else if(speedhack && (speed == 230400)) send_uint(223214); /* get dcload to pick N=6 rather than N=5 */ else if(use_extclk) hooks/post-receive -- A serial program loader for the Dreamcast. |