Skip to content

Commit 3416b3a

Browse files
committed
Correct the naming of RDMnet - easy stuff
(cherry picked from commit 7edce3a)
1 parent 517e25c commit 3416b3a

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ Documentation:
662662
* Fix the build on OS X Lion 10.7 - #231
663663
* Fix the build with clang 4.2
664664
* Added a simple E1.31 load test tool
665-
* Added the first E1.33 (RDMNet) tools
665+
* Added the first E1.33 (RDMnet) tools
666666
* Switched to using the new command line flags module in some programs.
667667
* Man page for dmxmonitor - #219
668668
* Rename ola_universe_stats to ola_uni_stats, standardising names

doxygen/namespaces.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @brief DMX512 related code.
1616
*
1717
* @namespace ola::e133
18-
* @brief E1.33 (RDMNet)
18+
* @brief E1.33 (RDMnet)
1919
*
2020
* @namespace ola::file
2121
* @brief File helper functions.

include/ola/acn/ACNPort.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* [ACN on
2828
* wikipedia](http://en.wikipedia.org/wiki/Architecture_for_Control_Networks).
2929
*
30-
* This covers code for E1.31 (Streaming ACN) and E1.33 (RDMNet).
30+
* This covers code for E1.31 (Streaming ACN) and E1.33 (RDMnet).
3131
*/
3232

3333
/**

include/ola/acn/ACNVectors.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ enum E131Vector {
7474
* @brief Vectors used at the E1.33 layer.
7575
*/
7676
enum E133Vector {
77-
VECTOR_FRAMING_RDMNET = 1, /**< RDMNet data */
77+
VECTOR_FRAMING_RDMNET = 1, /**< RDMnet data */
7878
VECTOR_FRAMING_STATUS = 2, /**< Status message */
7979
VECTOR_FRAMING_CONTROLLER = 3, /**< Controller message */
8080
VECTOR_FRAMING_CHANGE_NOTIFICATION = 4, /**< Controller change message */

include/ola/e133/DeviceManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ using std::vector;
4949
class DeviceManager {
5050
public:
5151
/*
52-
* The callback used to receive RDMNet layer messages from the devices.
52+
* The callback used to receive RDMnet layer messages from the devices.
5353
* @returns true if the data should be acknowledged, false otherwise.
5454
*/
5555
typedef ola::Callback3<bool, const IPV4Address&, uint16_t,

tools/e133/DeviceManager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ DeviceManager::~DeviceManager() {}
5353

5454

5555
/**
56-
* Set the callback to be run when RDMNet data is received from a device.
56+
* Set the callback to be run when RDMnet data is received from a device.
5757
* @param callback the RDMMessageCallback to run when data is received.
5858
*/
5959
void DeviceManager::SetRDMMessageCallback(RDMMessageCallback *callback) {

tools/e133/DeviceManagerImpl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ DeviceManagerImpl::~DeviceManagerImpl() {
131131

132132

133133
/**
134-
* Set the callback to be run when RDMNet data is received from a device.
134+
* Set the callback to be run when RDMnet data is received from a device.
135135
* @param callback the RDMMessageCallback to run when data is received.
136136
*/
137137
void DeviceManagerImpl::SetRDMMessageCallback(RDMMessageCallback *callback) {

tools/e133/DeviceManagerImpl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ using std::vector;
6666
class DeviceManagerImpl {
6767
public:
6868
/*
69-
* The callback used to receive RDMNet layer messages from the devices.
69+
* The callback used to receive RDMnet layer messages from the devices.
7070
* @returns true if the data should be acknowledged, false otherwise.
7171
*/
7272
typedef ola::Callback3<bool, const IPV4Address&, uint16_t,

0 commit comments

Comments
 (0)