Post It
Dependencies: LM75B
Fork of EM027BS013 by
EPD_controller.h@1:3700ccf919d8, 2014-12-09 (annotated)
- Committer:
- ShalajLawania
- Date:
- Tue Dec 09 10:26:31 2014 +0000
- Revision:
- 1:3700ccf919d8
- Parent:
- 0:9297e33f50cf
Post It
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
embeddedartists | 0:9297e33f50cf | 1 | /** |
embeddedartists | 0:9297e33f50cf | 2 | * \file |
embeddedartists | 0:9297e33f50cf | 3 | * |
embeddedartists | 0:9297e33f50cf | 4 | * Copyright (c) 2012-2014 Pervasive Displays Inc. All rights reserved. |
embeddedartists | 0:9297e33f50cf | 5 | * |
embeddedartists | 0:9297e33f50cf | 6 | * Authors: Pervasive Displays Inc. |
embeddedartists | 0:9297e33f50cf | 7 | * |
embeddedartists | 0:9297e33f50cf | 8 | * Redistribution and use in source and binary forms, with or without |
embeddedartists | 0:9297e33f50cf | 9 | * modification, are permitted provided that the following conditions |
embeddedartists | 0:9297e33f50cf | 10 | * are met: |
embeddedartists | 0:9297e33f50cf | 11 | * |
embeddedartists | 0:9297e33f50cf | 12 | * 1. Redistributions of source code must retain the above copyright |
embeddedartists | 0:9297e33f50cf | 13 | * notice, this list of conditions and the following disclaimer. |
embeddedartists | 0:9297e33f50cf | 14 | * 2. Redistributions in binary form must reproduce the above copyright |
embeddedartists | 0:9297e33f50cf | 15 | * notice, this list of conditions and the following disclaimer in |
embeddedartists | 0:9297e33f50cf | 16 | * the documentation and/or other materials provided with the |
embeddedartists | 0:9297e33f50cf | 17 | * distribution. |
embeddedartists | 0:9297e33f50cf | 18 | * |
embeddedartists | 0:9297e33f50cf | 19 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
embeddedartists | 0:9297e33f50cf | 20 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
embeddedartists | 0:9297e33f50cf | 21 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
embeddedartists | 0:9297e33f50cf | 22 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
embeddedartists | 0:9297e33f50cf | 23 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
embeddedartists | 0:9297e33f50cf | 24 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
embeddedartists | 0:9297e33f50cf | 25 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
embeddedartists | 0:9297e33f50cf | 26 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
embeddedartists | 0:9297e33f50cf | 27 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
embeddedartists | 0:9297e33f50cf | 28 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
embeddedartists | 0:9297e33f50cf | 29 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
embeddedartists | 0:9297e33f50cf | 30 | */ |
embeddedartists | 0:9297e33f50cf | 31 | |
embeddedartists | 0:9297e33f50cf | 32 | #ifndef DISPLAY_CONTROLLER_H_INCLUDED |
embeddedartists | 0:9297e33f50cf | 33 | #define DISPLAY_CONTROLLER_H_INCLUDED |
embeddedartists | 0:9297e33f50cf | 34 | #include "Pervasive_Displays_small_EPD.h" |
embeddedartists | 0:9297e33f50cf | 35 | |
embeddedartists | 0:9297e33f50cf | 36 | void EPD_display_init(void); |
embeddedartists | 0:9297e33f50cf | 37 | void EPD_power_init(uint8_t EPD_type_index); |
embeddedartists | 0:9297e33f50cf | 38 | void EPD_display_from_pointer(uint8_t EPD_type_index,uint8_t *previous_image_ptr, |
embeddedartists | 0:9297e33f50cf | 39 | uint8_t *new_image_ptr); |
embeddedartists | 0:9297e33f50cf | 40 | void EPD_display_from_flash(uint8_t EPD_type_index,long previous_image_address, |
embeddedartists | 0:9297e33f50cf | 41 | long new_image_address,EPD_read_flash_handler On_EPD_read_flash); |
embeddedartists | 0:9297e33f50cf | 42 | void EPD_display_from_flash_Ex(uint8_t EPD_type_index,long previous_image_address, |
embeddedartists | 0:9297e33f50cf | 43 | long new_image_address,EPD_read_flash_handler On_EPD_read_flash); |
embeddedartists | 0:9297e33f50cf | 44 | |
embeddedartists | 0:9297e33f50cf | 45 | #endif //DISPLAY_CONTROLLER_H_INCLUDED |
embeddedartists | 0:9297e33f50cf | 46 | |
embeddedartists | 0:9297e33f50cf | 47 |