mirror of https://github.com/ARMmbed/mbed-os.git
commit
e84319fe70
|
@ -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");
|
||||
|
@ -31,15 +33,14 @@
|
|||
namespace mbed {
|
||||
namespace nfc {
|
||||
|
||||
/** @addtogroup nfc
|
||||
* @{
|
||||
*/
|
||||
|
||||
class NFCRemoteInitiator;
|
||||
class NFCRemoteTarget;
|
||||
class NFCControllerDriver;
|
||||
|
||||
/**
|
||||
* @addtogroup nfc
|
||||
* @{
|
||||
*/
|
||||
|
||||
/**
|
||||
* This class represents a NFC Controller.
|
||||
*
|
||||
|
@ -178,11 +179,7 @@ private:
|
|||
bool _discovery_running;
|
||||
Span<uint8_t> _ndef_buffer;
|
||||
};
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/** @}*/
|
||||
} // namespace nfc
|
||||
} // namespace mbed
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
@ -27,8 +29,7 @@
|
|||
namespace mbed {
|
||||
namespace nfc {
|
||||
|
||||
/**
|
||||
* @addtogroup nfc
|
||||
/** @addtogroup nfc
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
@ -153,12 +154,7 @@ private:
|
|||
uint32_t _eeprom_address;
|
||||
nfc_err_t _operation_result;
|
||||
};
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
|
||||
/** @}*/
|
||||
} // namespace nfc
|
||||
} // namespace mbed
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
@ -27,8 +29,7 @@ namespace mbed {
|
|||
namespace nfc {
|
||||
namespace ndef {
|
||||
|
||||
/**
|
||||
* @addtogroup nfc
|
||||
/** @addtogroup nfc
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
@ -189,11 +190,7 @@ private:
|
|||
bool _message_ended;
|
||||
bool _in_chunk;
|
||||
};
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/** @}*/
|
||||
} // namespace ndef
|
||||
} // namespace nfc
|
||||
} // namespace mbed
|
||||
|
|
|
@ -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");
|
||||
|
@ -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;
|
||||
|
||||
|
@ -165,11 +164,7 @@ private:
|
|||
|
||||
Delegate *_delegate;
|
||||
};
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/** @}*/
|
||||
} // namespace ndef
|
||||
} // namespace nfc
|
||||
} // namespace mbed
|
||||
|
|
|
@ -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");
|
||||
|
@ -30,8 +32,7 @@ namespace nfc {
|
|||
namespace ndef {
|
||||
namespace common {
|
||||
|
||||
/**
|
||||
* @addtogroup nfc
|
||||
/** @addtogroup nfc
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
@ -161,14 +162,11 @@ private:
|
|||
MimeParser _mime_parser;
|
||||
Delegate *_delegate;
|
||||
};
|
||||
|
||||
/**
|
||||
* @}
|
||||
*/
|
||||
|
||||
/** @}*/
|
||||
} // namespace common
|
||||
} // namespace ndef
|
||||
} // namespace nfc
|
||||
} // namespace mbed
|
||||
|
||||
#endif /* NFC_COMMON_SIMPLEMESSAGEPARSER_H_ */
|
||||
|
||||
|
|
Loading…
Reference in New Issue