mirror of
https://github.com/avrdudes/avrdude.git
synced 2026-06-02 09:46:34 +03:00
Reformat spacing/comments in src/updi_nvm.h
This commit is contained in:
@@ -31,20 +31,24 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
int updi_nvm_chip_erase(const PROGRAMMER *pgm, const AVRPART *p);
|
||||
int updi_nvm_erase_flash_page(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address);
|
||||
int updi_nvm_erase_eeprom(const PROGRAMMER *pgm, const AVRPART *p);
|
||||
int updi_nvm_erase_user_row(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address, uint16_t size);
|
||||
int updi_nvm_write_flash(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address, unsigned char *buffer, uint16_t size);
|
||||
int updi_nvm_write_user_row(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address, unsigned char *buffer, uint16_t size);
|
||||
int updi_nvm_write_boot_row(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address, unsigned char *buffer, uint16_t size);
|
||||
int updi_nvm_write_eeprom(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address, unsigned char *buffer, uint16_t size);
|
||||
int updi_nvm_write_fuse(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address, uint8_t value);
|
||||
int updi_nvm_wait_ready(const PROGRAMMER *pgm, const AVRPART *p);
|
||||
int updi_nvm_command(const PROGRAMMER *pgm, const AVRPART *p, uint8_t command);
|
||||
int updi_nvm_chip_erase(const PROGRAMMER *pgm, const AVRPART *p);
|
||||
int updi_nvm_erase_flash_page(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address);
|
||||
int updi_nvm_erase_eeprom(const PROGRAMMER *pgm, const AVRPART *p);
|
||||
int updi_nvm_erase_user_row(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address, uint16_t size);
|
||||
int updi_nvm_write_flash(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address,
|
||||
unsigned char *buffer, uint16_t size);
|
||||
int updi_nvm_write_user_row(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address,
|
||||
unsigned char *buffer, uint16_t size);
|
||||
int updi_nvm_write_boot_row(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address,
|
||||
unsigned char *buffer, uint16_t size);
|
||||
int updi_nvm_write_eeprom(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address,
|
||||
unsigned char *buffer, uint16_t size);
|
||||
int updi_nvm_write_fuse(const PROGRAMMER *pgm, const AVRPART *p, uint32_t address, uint8_t value);
|
||||
int updi_nvm_wait_ready(const PROGRAMMER *pgm, const AVRPART *p);
|
||||
int updi_nvm_command(const PROGRAMMER *pgm, const AVRPART *p, uint8_t command);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* updi_nvm_h */
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user