Color Oled(SSD1331) connect to STMicroelectronics Nucleo-F466

Dependencies:   ssd1331

Committer:
kadonotakashi
Date:
Wed Oct 10 00:33:53 2018 +0000
Revision:
0:8fdf9a60065b
how to make mbed librry

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kadonotakashi 0:8fdf9a60065b 1 /* mbed Microcontroller Library
kadonotakashi 0:8fdf9a60065b 2 * Copyright (c) 2006-2013 ARM Limited
kadonotakashi 0:8fdf9a60065b 3 *
kadonotakashi 0:8fdf9a60065b 4 * Licensed under the Apache License, Version 2.0 (the "License");
kadonotakashi 0:8fdf9a60065b 5 * you may not use this file except in compliance with the License.
kadonotakashi 0:8fdf9a60065b 6 * You may obtain a copy of the License at
kadonotakashi 0:8fdf9a60065b 7 *
kadonotakashi 0:8fdf9a60065b 8 * http://www.apache.org/licenses/LICENSE-2.0
kadonotakashi 0:8fdf9a60065b 9 *
kadonotakashi 0:8fdf9a60065b 10 * Unless required by applicable law or agreed to in writing, software
kadonotakashi 0:8fdf9a60065b 11 * distributed under the License is distributed on an "AS IS" BASIS,
kadonotakashi 0:8fdf9a60065b 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
kadonotakashi 0:8fdf9a60065b 13 * See the License for the specific language governing permissions and
kadonotakashi 0:8fdf9a60065b 14 * limitations under the License.
kadonotakashi 0:8fdf9a60065b 15 */
kadonotakashi 0:8fdf9a60065b 16 #include "gpio_api.h"
kadonotakashi 0:8fdf9a60065b 17 #include "pinmap.h"
kadonotakashi 0:8fdf9a60065b 18 #include "fsl_clock_config.h"
kadonotakashi 0:8fdf9a60065b 19
kadonotakashi 0:8fdf9a60065b 20 // called before main - implement here if board needs it otherwise, let
kadonotakashi 0:8fdf9a60065b 21 // the application override this if necessary
kadonotakashi 0:8fdf9a60065b 22 void mbed_sdk_init()
kadonotakashi 0:8fdf9a60065b 23 {
kadonotakashi 0:8fdf9a60065b 24 BOARD_BootClockRUN();
kadonotakashi 0:8fdf9a60065b 25 /* Set the TPM clock source to be IRC48M, do not change as TPM2 is used for the usticker */
kadonotakashi 0:8fdf9a60065b 26 CLOCK_SetTpmClock(1U);
kadonotakashi 0:8fdf9a60065b 27 }
kadonotakashi 0:8fdf9a60065b 28
kadonotakashi 0:8fdf9a60065b 29 // Enable the RTC oscillator if available on the board
kadonotakashi 0:8fdf9a60065b 30 void rtc_setup_oscillator(RTC_Type *base)
kadonotakashi 0:8fdf9a60065b 31 {
kadonotakashi 0:8fdf9a60065b 32 /* Enable the RTC oscillator */
kadonotakashi 0:8fdf9a60065b 33 RTC->CR |= RTC_CR_OSCE_MASK;
kadonotakashi 0:8fdf9a60065b 34 }
kadonotakashi 0:8fdf9a60065b 35
kadonotakashi 0:8fdf9a60065b 36 // Change the NMI pin to an input. This allows NMI pin to
kadonotakashi 0:8fdf9a60065b 37 // be used as a low power mode wakeup. The application will
kadonotakashi 0:8fdf9a60065b 38 // need to change the pin back to NMI_b or wakeup only occurs once!
kadonotakashi 0:8fdf9a60065b 39 void NMI_Handler(void)
kadonotakashi 0:8fdf9a60065b 40 {
kadonotakashi 0:8fdf9a60065b 41 gpio_t gpio;
kadonotakashi 0:8fdf9a60065b 42 gpio_init_in(&gpio, PTA4);
kadonotakashi 0:8fdf9a60065b 43 }