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 /*
kadonotakashi 0:8fdf9a60065b 2 * Copyright (c) , Arm Limited and affiliates.
kadonotakashi 0:8fdf9a60065b 3 * SPDX-License-Identifier: Apache-2.0
kadonotakashi 0:8fdf9a60065b 4 *
kadonotakashi 0:8fdf9a60065b 5 * Licensed under the Apache License, Version 2.0 (the "License");
kadonotakashi 0:8fdf9a60065b 6 * you may not use this file except in compliance with the License.
kadonotakashi 0:8fdf9a60065b 7 * You may obtain a copy of the License at
kadonotakashi 0:8fdf9a60065b 8 *
kadonotakashi 0:8fdf9a60065b 9 * http://www.apache.org/licenses/LICENSE-2.0
kadonotakashi 0:8fdf9a60065b 10 *
kadonotakashi 0:8fdf9a60065b 11 * Unless required by applicable law or agreed to in writing, software
kadonotakashi 0:8fdf9a60065b 12 * distributed under the License is distributed on an "AS IS" BASIS,
kadonotakashi 0:8fdf9a60065b 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
kadonotakashi 0:8fdf9a60065b 14 * See the License for the specific language governing permissions and
kadonotakashi 0:8fdf9a60065b 15 * limitations under the License.
kadonotakashi 0:8fdf9a60065b 16 */
kadonotakashi 0:8fdf9a60065b 17
kadonotakashi 0:8fdf9a60065b 18 #include "stdint.h"
kadonotakashi 0:8fdf9a60065b 19 #include "stdbool.h"
kadonotakashi 0:8fdf9a60065b 20 #include <cstddef>
kadonotakashi 0:8fdf9a60065b 21
kadonotakashi 0:8fdf9a60065b 22 #include "lorawan_types.h"
kadonotakashi 0:8fdf9a60065b 23
kadonotakashi 0:8fdf9a60065b 24 namespace LoRaPHY_stub
kadonotakashi 0:8fdf9a60065b 25 {
kadonotakashi 0:8fdf9a60065b 26 extern LoRaRadio *radio;
kadonotakashi 0:8fdf9a60065b 27 extern uint8_t bool_counter;
kadonotakashi 0:8fdf9a60065b 28 extern bool bool_table[20];
kadonotakashi 0:8fdf9a60065b 29 extern uint32_t uint32_value;
kadonotakashi 0:8fdf9a60065b 30 extern uint8_t uint8_value;
kadonotakashi 0:8fdf9a60065b 31 extern int8_t int8_value;
kadonotakashi 0:8fdf9a60065b 32 extern int int_value;
kadonotakashi 0:8fdf9a60065b 33 extern double double_value;
kadonotakashi 0:8fdf9a60065b 34 extern uint16_t uint16_value;
kadonotakashi 0:8fdf9a60065b 35 extern lorawan_status_t lorawan_status_value;
kadonotakashi 0:8fdf9a60065b 36 extern channel_params_t* channel_params_ptr;
kadonotakashi 0:8fdf9a60065b 37 extern uint8_t linkAdrNbBytesParsed;
kadonotakashi 0:8fdf9a60065b 38 extern uint8_t ch_mask_value;
kadonotakashi 0:8fdf9a60065b 39 extern uint8_t adr_parse_count;
kadonotakashi 0:8fdf9a60065b 40 }