-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Mode 5: Physical reset, for UARTS with only RTS, no DTR. #28
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,8 @@ | |
#include <string.h> | ||
#include <stdio.h> | ||
#include "wait_kbhit.h" | ||
#include <errno.h> | ||
#include <sys/ioctl.h> | ||
|
||
#include "serial.h" | ||
#include "rl78.h" | ||
|
@@ -29,6 +31,7 @@ extern int verbose_level; | |
static unsigned char communication_mode; | ||
|
||
static void rl78_set_reset(port_handle_t fd, int mode, int value) | ||
// Set reset signal for MCU based on mode (not applicable for mode 5 with hardware switch) | ||
{ | ||
int level = (mode & MODE_INVERT_RESET) ? !value : value; | ||
|
||
|
@@ -43,45 +46,104 @@ static void rl78_set_reset(port_handle_t fd, int mode, int value) | |
} | ||
|
||
int rl78_reset_init(port_handle_t fd, int wait, int baud, int mode, float voltage) | ||
// Routine for resetting RL78 and initializing it in programming mode | ||
{ | ||
unsigned char r; | ||
//(mode = desired communication mode from terminal input - 1) | ||
|
||
// Determine UART mode from mode argument | ||
if (MODE_UART_1 == (mode & MODE_UART)) | ||
{ | ||
r = SET_MODE_1WIRE_UART; | ||
communication_mode = 1; | ||
if (MODE_RESET_INPUT_TRUE == (mode & MODE_RESET_INPUT)) // sequencing for mode 5 and 6 | ||
{ | ||
communication_mode = 5; | ||
} | ||
else { | ||
communication_mode = 1; | ||
} | ||
|
||
} | ||
|
||
else | ||
{ | ||
r = SET_MODE_2WIRE_UART; | ||
communication_mode = 2; | ||
if (MODE_RESET_INPUT_TRUE == (mode & MODE_RESET_INPUT)) // sequencing for mode 5 and 6 | ||
{ | ||
communication_mode = 6; | ||
} | ||
else { | ||
communication_mode = 2; | ||
} | ||
//communication_mode = 2; | ||
} | ||
if (4 <= verbose_level) | ||
{ | ||
printf("Using communication mode %u%s\n", | ||
(mode & (MODE_UART | MODE_RESET)) + 1, | ||
(mode & (MODE_UART | MODE_RESET | MODE_RESET_INPUT)) + 1, | ||
(mode & MODE_INVERT_RESET) ? " with RESET inversion" : ""); | ||
} | ||
rl78_set_reset(fd, mode, 0); /* RESET -> 0 */ | ||
serial_set_txd(fd, 0); /* TOOL0 -> 0 */ | ||
if (wait) | ||
} | ||
// Begin reset procedure | ||
if (MODE_RESET_INPUT_TRUE == (mode & MODE_RESET_INPUT)) // sequencing for mode 5 and 6 | ||
{ | ||
printf("Turn MCU's power on and press any key..."); | ||
wait_kbhit(); | ||
printf("\n"); | ||
serial_set_txd(fd, 0); | ||
printf("Press and hold RESET.\n"); | ||
int reset = serial_get_cts(fd); | ||
if (reset == 1) | ||
{ | ||
while (1) // while CTS/RESET is high, wait | ||
{ | ||
reset = serial_get_cts(fd); | ||
if (reset == 0) | ||
{ | ||
printf("Got reset press. Hang on...\n"); | ||
usleep(100000); | ||
printf("Let go of RESET.\n"); | ||
break; | ||
} | ||
} | ||
} | ||
|
||
while (1) // while CTS/RESET is low, wait | ||
{ | ||
reset = serial_get_cts(fd); | ||
if (reset == 1) | ||
{ | ||
printf("Got reset release. Attempting to set communication mode...\n"); | ||
break; | ||
} | ||
} | ||
Comment on lines
+91
to
+115
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is overly complex to read. Also, lets allow for inverted reset here. Add:
Test my Replace the first block with just:
Then move the Replace the second block with:
Then move the The usleep(1000) just keeps it from completely locking up a CPU while waiting. |
||
// Reset is now high | ||
serial_flush(fd); | ||
usleep(3000); | ||
serial_set_txd(fd,1); // TOOL0 -> 1 | ||
usleep(1000); | ||
serial_flush(fd); | ||
|
||
} | ||
else { // sequencing for mode 1,2,3,4 | ||
rl78_set_reset(fd, mode, 0); /* RESET -> 0 */ | ||
serial_set_txd(fd, 0); /* TOOL0 -> 0 */ | ||
if (wait) | ||
{ | ||
printf("Turn MCU's power on and press any key..."); | ||
wait_kbhit(); | ||
printf("\n"); | ||
} | ||
serial_flush(fd); | ||
usleep(1000); | ||
rl78_set_reset(fd, mode, 1); /* RESET -> 1 */ | ||
usleep(3000); | ||
serial_set_txd(fd, 1); /* TOOL0 -> 1 */ | ||
usleep(1000); | ||
serial_flush(fd); | ||
} | ||
serial_flush(fd); | ||
usleep(1000); | ||
rl78_set_reset(fd, mode, 1); /* RESET -> 1 */ | ||
usleep(3000); | ||
serial_set_txd(fd, 1); /* TOOL0 -> 1 */ | ||
usleep(1000); | ||
serial_flush(fd); | ||
if (3 <= verbose_level) | ||
{ | ||
printf("Send 1-byte data for setting mode\n"); | ||
} | ||
serial_write(fd, &r, 1); | ||
if (1 == communication_mode) | ||
if (((1 | 5) == communication_mode)) | ||
{ | ||
serial_read(fd, &r, 1); | ||
} | ||
|
@@ -91,11 +153,12 @@ int rl78_reset_init(port_handle_t fd, int wait, int baud, int mode, float voltag | |
|
||
int rl78_reset(port_handle_t fd, int mode) | ||
{ | ||
serial_set_txd(fd, 1); /* TOOL0 -> 1 */ | ||
rl78_set_reset(fd, mode, 0); /* RESET -> 0 */ | ||
usleep(10000); | ||
rl78_set_reset(fd, mode, 1); /* RESET -> 1 */ | ||
serial_set_txd(fd, 1); /* TOOL0 -> 1 */ | ||
rl78_set_reset(fd, mode, 0); /* RESET -> 0 */ | ||
usleep(10000); | ||
rl78_set_reset(fd, mode, 1); /* RESET -> 1 */ | ||
return 0; | ||
Comment on lines
154
to
160
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Too much indentation. Fix this. |
||
|
||
} | ||
|
||
static | ||
|
@@ -131,7 +194,7 @@ int rl78_send_cmd(port_handle_t fd, int cmd, const void *data, int len) | |
buf[len + 4] = ETX; | ||
int ret = serial_write(fd, buf, sizeof buf); | ||
// Read back echo | ||
if (1 == communication_mode) | ||
if ((1 | 5) == communication_mode) | ||
{ | ||
serial_read(fd, buf, sizeof buf); | ||
} | ||
|
@@ -152,7 +215,7 @@ int rl78_send_data(port_handle_t fd, const void *data, int len, int last) | |
buf[len + 3] = last ? ETX : ETB; | ||
int ret = serial_write(fd, buf, sizeof buf); | ||
// Read back echo | ||
if (1 == communication_mode) | ||
if ((1 | 5) == communication_mode) | ||
{ | ||
serial_read(fd, buf, sizeof buf); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove blank line.