A metronome using the FRDM K64F board

Committer:
ram54288
Date:
Sun May 14 18:40:18 2017 +0000
Revision:
0:a7a43371b306
Initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ram54288 0:a7a43371b306 1 /*
ram54288 0:a7a43371b306 2 * Copyright (c) 2015 ARM Limited. All rights reserved.
ram54288 0:a7a43371b306 3 * SPDX-License-Identifier: Apache-2.0
ram54288 0:a7a43371b306 4 * Licensed under the Apache License, Version 2.0 (the License); you may
ram54288 0:a7a43371b306 5 * not use this file except in compliance with the License.
ram54288 0:a7a43371b306 6 * You may obtain a copy of the License at
ram54288 0:a7a43371b306 7 *
ram54288 0:a7a43371b306 8 * http://www.apache.org/licenses/LICENSE-2.0
ram54288 0:a7a43371b306 9 *
ram54288 0:a7a43371b306 10 * Unless required by applicable law or agreed to in writing, software
ram54288 0:a7a43371b306 11 * distributed under the License is distributed on an AS IS BASIS, WITHOUT
ram54288 0:a7a43371b306 12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
ram54288 0:a7a43371b306 13 * See the License for the specific language governing permissions and
ram54288 0:a7a43371b306 14 * limitations under the License.
ram54288 0:a7a43371b306 15 */
ram54288 0:a7a43371b306 16
ram54288 0:a7a43371b306 17 #include <string.h>
ram54288 0:a7a43371b306 18 #include "mbed-client/m2mconnectionhandler.h"
ram54288 0:a7a43371b306 19 #include "mbed-client/m2mconnectionsecurity.h"
ram54288 0:a7a43371b306 20 #include "mbed-client/m2mtimer.h"
ram54288 0:a7a43371b306 21 #include "mbed-client/m2msecurity.h"
ram54288 0:a7a43371b306 22 #include "mbed-client-mbedtls/m2mconnectionsecuritypimpl.h"
ram54288 0:a7a43371b306 23
ram54288 0:a7a43371b306 24 M2MConnectionSecurity::M2MConnectionSecurity(SecurityMode mode)
ram54288 0:a7a43371b306 25 {
ram54288 0:a7a43371b306 26 _private_impl = new M2MConnectionSecurityPimpl(mode);
ram54288 0:a7a43371b306 27 }
ram54288 0:a7a43371b306 28
ram54288 0:a7a43371b306 29 M2MConnectionSecurity::~M2MConnectionSecurity(){
ram54288 0:a7a43371b306 30 delete _private_impl;
ram54288 0:a7a43371b306 31 }
ram54288 0:a7a43371b306 32
ram54288 0:a7a43371b306 33 void M2MConnectionSecurity::reset(){
ram54288 0:a7a43371b306 34 _private_impl->reset();
ram54288 0:a7a43371b306 35 }
ram54288 0:a7a43371b306 36
ram54288 0:a7a43371b306 37 int M2MConnectionSecurity::init(const M2MSecurity *security){
ram54288 0:a7a43371b306 38 return _private_impl->init(security);
ram54288 0:a7a43371b306 39 }
ram54288 0:a7a43371b306 40
ram54288 0:a7a43371b306 41 int M2MConnectionSecurity::start_connecting_non_blocking(M2MConnectionHandler* connHandler)
ram54288 0:a7a43371b306 42 {
ram54288 0:a7a43371b306 43 return _private_impl->start_connecting_non_blocking(connHandler);
ram54288 0:a7a43371b306 44 }
ram54288 0:a7a43371b306 45
ram54288 0:a7a43371b306 46 int M2MConnectionSecurity::continue_connecting()
ram54288 0:a7a43371b306 47 {
ram54288 0:a7a43371b306 48 return _private_impl->continue_connecting();
ram54288 0:a7a43371b306 49 }
ram54288 0:a7a43371b306 50
ram54288 0:a7a43371b306 51 int M2MConnectionSecurity::connect(M2MConnectionHandler* connHandler){
ram54288 0:a7a43371b306 52 return _private_impl->connect(connHandler);
ram54288 0:a7a43371b306 53 }
ram54288 0:a7a43371b306 54
ram54288 0:a7a43371b306 55 int M2MConnectionSecurity::send_message(unsigned char *message, int len){
ram54288 0:a7a43371b306 56 return _private_impl->send_message(message, len);
ram54288 0:a7a43371b306 57 }
ram54288 0:a7a43371b306 58
ram54288 0:a7a43371b306 59 int M2MConnectionSecurity::read(unsigned char* buffer, uint16_t len){
ram54288 0:a7a43371b306 60 return _private_impl->read(buffer, len);
ram54288 0:a7a43371b306 61 }
ram54288 0:a7a43371b306 62
ram54288 0:a7a43371b306 63 void M2MConnectionSecurity::set_random_number_callback(random_number_cb callback)
ram54288 0:a7a43371b306 64 {
ram54288 0:a7a43371b306 65 _private_impl->set_random_number_callback(callback);
ram54288 0:a7a43371b306 66 }
ram54288 0:a7a43371b306 67
ram54288 0:a7a43371b306 68 void M2MConnectionSecurity::set_entropy_callback(entropy_cb callback)
ram54288 0:a7a43371b306 69 {
ram54288 0:a7a43371b306 70 _private_impl->set_entropy_callback(callback);
ram54288 0:a7a43371b306 71 }