// // srecord - manipulate eprom load files // Copyright (C) 2001, 2002, 2006, 2007 Peter Miller // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see // . // #include #include srec_output_file_emon52::srec_output_file_emon52() : srec_output_file(), pref_block_size(16) { } srec_output_file_emon52::srec_output_file_emon52( const std::string &a_file_name) : srec_output_file(a_file_name), pref_block_size(16) { } srec_output_file_emon52::srec_output_file_emon52( const srec_output_file_emon52 &) : srec_output_file(), pref_block_size(16) { fatal_error("bug (%s, %d)", __FILE__, __LINE__); } srec_output_file_emon52 & srec_output_file_emon52::operator=(const srec_output_file_emon52 &) { fatal_error("bug (%s, %d)", __FILE__, __LINE__); return *this; } srec_output_file_emon52::~srec_output_file_emon52() { // check for termination record } void srec_output_file_emon52::write(const srec_record & record) { switch (record.get_type()) { case srec_record::type_header: // This format can't do header records break; case srec_record::type_data: if (record.get_length() < 1) return; if (record.get_address() + record.get_length() > (1UL << 16)) { fatal_error ("data address (0x%lX..0x%lX) too large", record.get_address(), record.get_address() + record.get_length() - 1); } put_byte(record.get_length()); put_char(' '); put_word(record.get_address()); put_char(':'); checksum_reset(); for (int j = 0; j < record.get_length(); ++j) { put_byte(record.get_data(j)); put_char(' '); } put_word(checksum_get16()); put_char('\n'); break; case srec_record::type_data_count: // ignore break; case srec_record::type_start_address: // This format can't do start address records break; case srec_record::type_unknown: fatal_error("can't write unknown record type"); } } void srec_output_file_emon52::line_length_set(int linlen) { // // Given the number of characters, figure the maximum number of // data baytes. // int n = (linlen - 11) / 3; // // Constrain based on the file format. // if (n < 1) n = 1; else if (n > 255) n = 255; // // An additional constraint is the size of the srec_record // data buffer. // if (n > srec_record::max_data_length) n = srec_record::max_data_length; pref_block_size = n; } void srec_output_file_emon52::address_length_set(int) { // ignore (this is only a 16-bit format) } int srec_output_file_emon52::preferred_block_size_get() const { return pref_block_size; } const char * srec_output_file_emon52::format_name() const { return "Emon52"; }