Skip to content

Commit 11ff74e

Browse files
committed
examples prepared for release
1 parent aa2dbf6 commit 11ff74e

3 files changed

Lines changed: 12 additions & 1 deletion

File tree

src/SCCircularBuffer.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
#include <inttypes.h>
1111
#include <SCThreadingSupport.h>
1212

13+
/**
14+
* @file SCCircularBuffer.h
15+
* @brief a circular buffer implementation that is thread safe and works on all supported boards
16+
*/
17+
1318
namespace tccollection {
1419

1520
/**

src/SCThreadingSupport.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
#ifndef SIMPLECOLLECTIONS_SCTHREADINGSUPPORT_H
77
#define SIMPLECOLLECTIONS_SCTHREADINGSUPPORT_H
88

9+
/**
10+
* @file SCThreadingSupport.h
11+
* @brief provides the thread safety implementation for circular buffers
12+
*/
13+
914
// when not on mbed, we need to load Arduino.h to get the right defines for some boards.
1015
#ifndef __MBED__
1116
#include <Arduino.h>

src/SimpleCollections.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
*/
55

66
/**
7-
* @file SimpleCollections.h memory efficient collections for use on all embedded devices.
7+
* @file SimpleCollections.h
8+
* @brief memory efficient collections for use on all embedded devices.
89
*/
910

1011
#ifndef SIMPLE_COLLECTIONS_H

0 commit comments

Comments
 (0)