Files
DigiRadio/Software/components/drivers/bt1035/include/bt1035/Bt1035Error.hpp
T
micheleandCursor d49b2011dd Add BT1035 driver with manual chapter and expand Si4684 tuning docs.
Implement Bt1035Driver AT init (AT+AUXCFG=1), core AT parser with host tests,
wire boot into HardwareBootstrap, and document DAB/FM tuning workflows in ch-si4684.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-06 17:07:37 +02:00

37 lines
681 B
C++

/**
* @file Bt1035Error.hpp
* @brief Typed errors for FSC-BT1035 driver operations.
*
* DigiRadio firmware — https://github.com/manvalan/DigiRadio
*
* Copyright 2026 Michele Bigi
* SPDX-License-Identifier: Apache-2.0
*
* @author Michele Bigi
* @date 2026-07-06
*/
#pragma once
namespace bt1035 {
/**
* @brief Bt1035Error — failure causes for BT1035 bring-up and AT I/O.
*
* @dname Bt1035Error
* @return n/a (type)
* @pubstate n/a
*
* @author Michele Bigi
* @date 2026-07-06
*/
enum class Bt1035Error {
ResetFailed,
UartInitFailed,
NotBooted,
AtTimeout,
AtError,
UnexpectedResponse,
};
} // namespace bt1035