Library for Modtronix NZ32 STM32 boards, like the NZ32-SC151, NZ32-SB072, NZ32-SE411 and others

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mx_buffer_base.h Source File

mx_buffer_base.h

00001 /**
00002  * File:      mx_buffer_base.h
00003  *
00004  * Author:    Modtronix Engineering - www.modtronix.com
00005  *
00006  * Description:
00007  *
00008  * Software License Agreement:
00009  * This software has been written or modified by Modtronix Engineering. The code
00010  * may be modified and can be used free of charge for commercial and non commercial
00011  * applications. If this is modified software, any license conditions from original
00012  * software also apply. Any redistribution must include reference to 'Modtronix
00013  * Engineering' and web link(www.modtronix.com) in the file header.
00014  *
00015  * THIS SOFTWARE IS PROVIDED IN AN 'AS IS' CONDITION. NO WARRANTIES, WHETHER EXPRESS,
00016  * IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
00017  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. THE
00018  * COMPANY SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL OR
00019  * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
00020  */
00021 #ifndef SRC_MX_BUFFER_BASE_H_
00022 #define SRC_MX_BUFFER_BASE_H_
00023 
00024 class MxBuffer {
00025 
00026 public:
00027     //static const uint16_t VALUE_OFFSET_UNKNOWN = 0xffff;    /* Offset of 'value' part of "name=value" command unknown */
00028     static const uint16_t VALUE_OFFSET_UNKNOWN = -1;
00029 };
00030 
00031 
00032 
00033 #endif /* SRC_MX_BUFFER_BASE_H_ */