test

Dependencies:   mbed Watchdog

Dependents:   STM32-MC_node

Committer:
ommpy
Date:
Mon Jul 06 17:18:59 2020 +0530
Revision:
0:d383e2dee0f7
first commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ommpy 0:d383e2dee0f7 1 /* mbed Microcontroller Library
ommpy 0:d383e2dee0f7 2 * Copyright (c) 2014-2015 ARM Limited
ommpy 0:d383e2dee0f7 3 *
ommpy 0:d383e2dee0f7 4 * Licensed under the Apache License, Version 2.0 (the "License");
ommpy 0:d383e2dee0f7 5 * you may not use this file except in compliance with the License.
ommpy 0:d383e2dee0f7 6 * You may obtain a copy of the License at
ommpy 0:d383e2dee0f7 7 *
ommpy 0:d383e2dee0f7 8 * http://www.apache.org/licenses/LICENSE-2.0
ommpy 0:d383e2dee0f7 9 *
ommpy 0:d383e2dee0f7 10 * Unless required by applicable law or agreed to in writing, software
ommpy 0:d383e2dee0f7 11 * distributed under the License is distributed on an "AS IS" BASIS,
ommpy 0:d383e2dee0f7 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
ommpy 0:d383e2dee0f7 13 * See the License for the specific language governing permissions and
ommpy 0:d383e2dee0f7 14 * limitations under the License.
ommpy 0:d383e2dee0f7 15 */
ommpy 0:d383e2dee0f7 16 #ifndef MBED_BUFFER_H
ommpy 0:d383e2dee0f7 17 #define MBED_BUFFER_H
ommpy 0:d383e2dee0f7 18
ommpy 0:d383e2dee0f7 19 #include <stddef.h>
ommpy 0:d383e2dee0f7 20
ommpy 0:d383e2dee0f7 21 /** Generic buffer structure
ommpy 0:d383e2dee0f7 22 */
ommpy 0:d383e2dee0f7 23 typedef struct buffer_s {
ommpy 0:d383e2dee0f7 24 void *buffer; /**< the pointer to a buffer */
ommpy 0:d383e2dee0f7 25 size_t length; /**< the buffer length */
ommpy 0:d383e2dee0f7 26 size_t pos; /**< actual buffer position */
ommpy 0:d383e2dee0f7 27 uint8_t width; /**< The buffer unit width (8, 16, 32, 64), used for proper *buffer casting */
ommpy 0:d383e2dee0f7 28 } buffer_t;
ommpy 0:d383e2dee0f7 29
ommpy 0:d383e2dee0f7 30 #endif