// // srecord - manipulate eprom load files // Copyright (C) 1998, 1999, 2001, 2002, 2005-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 // . // #ifndef INCLUDE_SREC_OUTPUT_FILE_TEKTRONIX_H #define INCLUDE_SREC_OUTPUT_FILE_TEKTRONIX_H #include /** * The srec_output_file_tektronix class is used to represent an output * file which is in Tektronix format. */ class srec_output_file_tektronix: public srec_output_file { public: /** * The destructor. */ virtual ~srec_output_file_tektronix(); /** * The default constructor. * Output will be written to the standard output. */ srec_output_file_tektronix(); /** * The constructor. * * @param file_name * The file name to open to write data to. The file name "-" * is understood to mean the standard output. */ srec_output_file_tektronix(const std::string &file_name); protected: // See base class for documentation. void write(const srec_record &); // See base class for documentation. void line_length_set(int); // See base class for documentation. void address_length_set(int); // See base class for documentation. int preferred_block_size_get() const; // See base class for documentation. void put_nibble(int); // See base class for documentation. void put_byte(unsigned char); // See base class for documentation. const char *format_name() const; private: /** * The pref_block_size instance variable is used to remember the * preferred number of data bytes (NOT encoded hex characters) to * be placed in each output line. */ int pref_block_size; /** * The write_inner method is used to write a line of output. * * @param address * The address of the first byte of data on the line. * @param data * The palyload of this line. * @param data_nbytes * The number of bytes of payload. */ void write_inner(unsigned long address, const void *data, int data_nbytes); /** * The copy constructor. Do not use. */ srec_output_file_tektronix(const srec_output_file_tektronix &); /** * The assignment operator. Do not use. */ srec_output_file_tektronix &operator=(const srec_output_file_tektronix &); }; #endif // INCLUDE_SREC_OUTPUT_FILE_TEKTRONIX_H