Program Listing for File msg.hpp

Return to documentation for file (libspookyaction/include/pn532/msg.hpp)

//
// Created by Pietro Saccardi on 22/12/2020.
//

#ifndef PN532_MSG_HPP
#define PN532_MSG_HPP

#include <pn532/bits.hpp>
#include <string>

namespace pn532 {
#ifndef DOXYGEN_SHOULD_SKIP_THIS
    [[nodiscard]] const char *to_string(baudrate s);

    [[nodiscard]] const char *to_string(command_code c);

    [[nodiscard]] const char *to_string(bits::test t);

    [[nodiscard]] const char *to_string(baudrate_modulation bm);

    [[nodiscard]] const char *to_string(target_type t);

    [[nodiscard]] const char *to_string(internal_error_code e);
#endif
}// namespace pn532

#endif//PN532_MSG_HPP