Skip to content

Doxygen correction #9326

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions features/nfc/nfc/NFCController.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/* mbed Microcontroller Library
/** @file NFCController.h
*
* mbed Microcontroller Library
* Copyright (c) 2018 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -31,15 +33,14 @@
namespace mbed {
namespace nfc {

/** @addtogroup nfc
* @{
*/

class NFCRemoteInitiator;
class NFCRemoteTarget;
class NFCControllerDriver;

/**
* @addtogroup nfc
* @{
*/

/**
* This class represents a NFC Controller.
*
Expand Down Expand Up @@ -178,11 +179,7 @@ class NFCController : private NFCControllerDriver::Delegate {
bool _discovery_running;
Span<uint8_t> _ndef_buffer;
};

/**
* @}
*/

/** @}*/
} // namespace nfc
} // namespace mbed

Expand Down
14 changes: 5 additions & 9 deletions features/nfc/nfc/NFCEEPROM.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/* mbed Microcontroller Library
/** @file NFCEEPROM.h
*
* mbed Microcontroller Library
* Copyright (c) 2018 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -27,8 +29,7 @@
namespace mbed {
namespace nfc {

/**
* @addtogroup nfc
/** @addtogroup nfc
* @{
*/

Expand Down Expand Up @@ -153,12 +154,7 @@ class NFCEEPROM : public NFCTarget, public NFCEEPROMDriver::Delegate {
uint32_t _eeprom_address;
nfc_err_t _operation_result;
};

/**
* @}
*/


/** @}*/
} // namespace nfc
} // namespace mbed

Expand Down
13 changes: 5 additions & 8 deletions features/nfc/nfc/ndef/MessageBuilder.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/* mbed Microcontroller Library
/** @file MessageBuilder.h
*
* mbed Microcontroller Library
* Copyright (c) 2018 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -27,8 +29,7 @@ namespace mbed {
namespace nfc {
namespace ndef {

/**
* @addtogroup nfc
/** @addtogroup nfc
* @{
*/

Expand Down Expand Up @@ -189,11 +190,7 @@ class MessageBuilder {
bool _message_ended;
bool _in_chunk;
};

/**
* @}
*/

/** @}*/
} // namespace ndef
} // namespace nfc
} // namespace mbed
Expand Down
15 changes: 5 additions & 10 deletions features/nfc/nfc/ndef/MessageParser.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/* mbed Microcontroller Library
/** @file MessageParser.h
*
* mbed Microcontroller Library
* Copyright (c) 2018 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -18,19 +20,16 @@
#define NFC_NDEF_MESSAGEPARSER_H_

#include <stdlib.h>

#include "platform/Span.h"

namespace mbed {
namespace nfc {
namespace ndef {

/**
* @addtogroup nfc
/** @addtogroup nfc
* @{
*/


// Forward declaration
class Record;

Expand Down Expand Up @@ -165,11 +164,7 @@ class MessageParser {

Delegate *_delegate;
};

/**
* @}
*/

/** @}*/
} // namespace ndef
} // namespace nfc
} // namespace mbed
Expand Down
14 changes: 6 additions & 8 deletions features/nfc/nfc/ndef/common/SimpleMessageParser.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/* mbed Microcontroller Library
/** @file SimpleMessageParser.h
*
* mbed Microcontroller Library
* Copyright (c) 2018 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -30,8 +32,7 @@ namespace nfc {
namespace ndef {
namespace common {

/**
* @addtogroup nfc
/** @addtogroup nfc
* @{
*/

Expand Down Expand Up @@ -161,14 +162,11 @@ class SimpleMessageParser :
MimeParser _mime_parser;
Delegate *_delegate;
};

/**
* @}
*/

/** @}*/
} // namespace common
} // namespace ndef
} // namespace nfc
} // namespace mbed

#endif /* NFC_COMMON_SIMPLEMESSAGEPARSER_H_ */