A board support package for the LPC4088 Display Module.

Dependencies:   DM_HttpServer DM_USBHost

Dependents:   lpc4088_displaymodule_emwin lpc4088_displaymodule_demo_sphere sampleGUI sampleEmptyGUI ... more

Fork of DMSupport by EmbeddedArtists AB

Committer:
embeddedartists
Date:
Mon Nov 04 14:32:50 2019 +0000
Revision:
42:bbfe299d4a0c
More updates related to mbed OS 5

Who changed what in which revision?

UserRevisionLine numberNew contents of line
embeddedartists 42:bbfe299d4a0c 1 /*
embeddedartists 42:bbfe299d4a0c 2 * Copyright 2014 Embedded Artists AB
embeddedartists 42:bbfe299d4a0c 3 *
embeddedartists 42:bbfe299d4a0c 4 * Licensed under the Apache License, Version 2.0 (the "License");
embeddedartists 42:bbfe299d4a0c 5 * you may not use this file except in compliance with the License.
embeddedartists 42:bbfe299d4a0c 6 * You may obtain a copy of the License at
embeddedartists 42:bbfe299d4a0c 7 *
embeddedartists 42:bbfe299d4a0c 8 * http://www.apache.org/licenses/LICENSE-2.0
embeddedartists 42:bbfe299d4a0c 9 *
embeddedartists 42:bbfe299d4a0c 10 * Unless required by applicable law or agreed to in writing, software
embeddedartists 42:bbfe299d4a0c 11 * distributed under the License is distributed on an "AS IS" BASIS,
embeddedartists 42:bbfe299d4a0c 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
embeddedartists 42:bbfe299d4a0c 13 * See the License for the specific language governing permissions and
embeddedartists 42:bbfe299d4a0c 14 * limitations under the License.
embeddedartists 42:bbfe299d4a0c 15 */
embeddedartists 42:bbfe299d4a0c 16
embeddedartists 42:bbfe299d4a0c 17 #ifndef DM_RTC_H
embeddedartists 42:bbfe299d4a0c 18 #define DM_RTC_H
embeddedartists 42:bbfe299d4a0c 19
embeddedartists 42:bbfe299d4a0c 20 void dm_init_rtc(void);
embeddedartists 42:bbfe299d4a0c 21 time_t dm_read_rtc(void);
embeddedartists 42:bbfe299d4a0c 22 void dm_write_rtc(time_t t);
embeddedartists 42:bbfe299d4a0c 23 int dm_isenabled_rtc(void);
embeddedartists 42:bbfe299d4a0c 24
embeddedartists 42:bbfe299d4a0c 25 #endif