6d5ec0e0f34bcd6d62865ccd02ec6a565d077c48
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/types.h  1) /*
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/types.h  2)  * EtherPix library
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/types.h  3)  *
Stefan Schuermans update copyright year

Stefan Schuermans authored 7 years ago

include/etherpix/types.h  4)  * Copyright 2010-2017 Stefan Schuermans <stefan schuermans info>
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/types.h  5)  *
include/flexipix/types.h  6)  * This program is free software: you can redistribute it and/or modify
include/flexipix/types.h  7)  * it under the terms of the GNU General Public License as published by
include/flexipix/types.h  8)  * the Free Software Foundation, version 3 of the License.
include/flexipix/types.h  9)  *
include/flexipix/types.h 10)  *
include/flexipix/types.h 11)  * This program is distributed in the hope that it will be useful,
include/flexipix/types.h 12)  * but WITHOUT ANY WARRANTY; without even the implied warranty of
include/flexipix/types.h 13)  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
include/flexipix/types.h 14)  * GNU General Public License for more details.
include/flexipix/types.h 15)  *
include/flexipix/types.h 16)  * You should have received a copy of the GNU Lesser General Public License
include/flexipix/types.h 17)  * along with this program. If not, see <http://www.gnu.org/licenses/>.
include/flexipix/types.h 18)  */
include/flexipix/types.h 19) 
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/types.h 20) #ifndef ETP_INC_TYPES_H
include/etherpix/types.h 21) #define ETP_INC_TYPES_H
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/types.h 22) 
include/flexipix/types.h 23) #include <stdint.h>
include/flexipix/types.h 24) 
include/flexipix/types.h 25) /** a single byte */
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/types.h 26) typedef uint8_t etp_u8_t;
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/types.h 27) 
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/types.h 28) /** a EtherPix display */
include/etherpix/types.h 29) typedef struct etp_display_s etp_display_t;
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/types.h 30) 
Stefan Schuermans support BGR input in additi...

Stefan Schuermans authored 7 years ago

include/flexipix/types.h 31) /** format of pixel data */
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/types.h 32) typedef enum etp_pixfmt_e {
include/etherpix/types.h 33)   etp_pixfmt_rgb24, /**< 24 bit RGB data, 3 bytes: red, green, blue */
include/etherpix/types.h 34)   etp_pixfmt_bgr24, /**< 24 bit BGR data, 3 bytes: blue, green, red */
Stefan Schuermans add support for monochrome...

Stefan Schuermans authored 6 years ago

include/etherpix/types.h 35)   etp_pixfmt_mono8, /**< 8 bit monochrome data, 1 byte: white */
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/types.h 36) } etp_pixfmt_t;
Stefan Schuermans support BGR input in additi...

Stefan Schuermans authored 7 years ago

include/flexipix/types.h 37) 
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/types.h 38) /**
include/flexipix/types.h 39)  * \brief a displayer
include/flexipix/types.h 40)  *
include/flexipix/types.h 41)  * sends pictures to a display whenever the maximum interval expired
include/flexipix/types.h 42)  */
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/types.h 43) typedef struct etp_displayer_s etp_displayer_t;
Stefan Schuermans v1.0.0

Stefan Schuermans authored 13 years ago

include/flexipix/types.h 44) 
Stefan Schuermans rename "FlexiPix" to "Ether...

Stefan Schuermans authored 7 years ago

include/etherpix/types.h 45) #endif /* #ifndef ETP_INC_TYPES_H */