mirror of
https://github.com/mariusgreuel/avrdude.git
synced 2025-12-14 01:44:58 +00:00
Use const in PROGRAMMER function arguments where appropriate
In order to get meaningful const properties for the PROGRAMMER, AVRPART and AVRMEM arguments, some code needed to be moved around, otherwise a network of "tainted" assignments risked rendering nothing const: - Change void (*enable)(PROGRAMMER *pgm) to void (*enable)(PROGRAMMER *pgm, const AVRPART *p); this allows changes in the PROGRAMMER structure after the part is known. For example, use TPI, UPDI, PDI functions in that programmer appropriate to the part. This used to be done later in the process, eg, in the initialize() function, which "taints" all other programmer functions wrt const and sometimes requires other finessing with flags etc. Much clearer with the modified enable() interface. - Move TPI initpgm-type code from initialize() to enable() --- note that initpgm() does not have the info at the time when it is called whether or not TPI is required - buspirate.c: move pgm->flag to PDATA(pgm)->flag (so legitimate modification of the flag does not change PROGRAMMER structure) - Move AVRPART_INIT_SMC and AVRPART_WRITE bits from the flags field in AVRPART to jtagmkII.c's private data flags32 fiels as FLAGS32_INIT_SMC and FLAGS32_WRITE bits - Move the xbeeResetPin component to private data in stk500.c as this is needed by xbee when it saddles on the stk500 code (previously, the flags component of the part was re-dedicated to this) - Change the way the "chained" private data are used in jtag3.c whilst keeping the PROGRAMMER structure read-only otherwise - In stk500v2.c move the STK600 pgm update from stk500v2_initialize() to stk500v2_enable() so the former keeps the PROGRAMMER structure read-only (for const assertion). - In usbasp change the code from changing PROGRAMMER functions late to dispatching to TPI or regular SPI protocol functions at runtime; reason being the decision whether to use TPI protocol is done at run-time depending on the capability of the attached programmer Also fixes Issue #1071, the treatment of default eecr value.
This commit is contained in:
14
src/main.c
14
src/main.c
@@ -279,7 +279,7 @@ int main(int argc, char * argv [])
|
||||
int calibrate; /* 1=calibrate RC oscillator, 0=don't */
|
||||
char * port; /* device port (/dev/xxx) */
|
||||
int terminal; /* 1=enter terminal mode, 0=don't */
|
||||
char * exitspecs; /* exit specs string from command line */
|
||||
const char *exitspecs; /* exit specs string from command line */
|
||||
char * programmer; /* programmer id */
|
||||
char * partdesc; /* part id */
|
||||
char sys_config[PATH_MAX]; /* system wide config file */
|
||||
@@ -869,12 +869,13 @@ int main(int argc, char * argv [])
|
||||
|
||||
case CONNTYPE_SPI:
|
||||
#ifdef HAVE_LINUXSPI
|
||||
port = *default_spi? default_spi: "unknown";
|
||||
port = cfg_strdup("main()", *default_spi? default_spi: "unknown");
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (partdesc == NULL) {
|
||||
avrdude_message(MSG_INFO, "%s: No AVR part has been specified, use \"-p Part\"\n\n",
|
||||
progname);
|
||||
@@ -884,7 +885,6 @@ int main(int argc, char * argv [])
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
||||
p = locate_part(part_list, partdesc);
|
||||
if (p == NULL) {
|
||||
avrdude_message(MSG_INFO, "%s: AVR Part \"%s\" not found.\n\n",
|
||||
@@ -895,7 +895,6 @@ int main(int argc, char * argv [])
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
||||
if (exitspecs != NULL) {
|
||||
if (pgm->parseexitspecs == NULL) {
|
||||
avrdude_message(MSG_INFO, "%s: WARNING: -E option not supported by this programmer type\n",
|
||||
@@ -908,10 +907,9 @@ int main(int argc, char * argv [])
|
||||
}
|
||||
}
|
||||
|
||||
if (avr_initmem(p) != 0)
|
||||
{
|
||||
if (avr_initmem(p) != 0) {
|
||||
avrdude_message(MSG_INFO, "\n%s: failed to initialize memories\n",
|
||||
progname);
|
||||
progname);
|
||||
exit(1);
|
||||
}
|
||||
|
||||
@@ -1024,7 +1022,7 @@ int main(int argc, char * argv [])
|
||||
/*
|
||||
* enable the programmer
|
||||
*/
|
||||
pgm->enable(pgm);
|
||||
pgm->enable(pgm, p);
|
||||
|
||||
/*
|
||||
* turn off all the status leds
|
||||
|
||||
Reference in New Issue
Block a user