| // Copyright 2024 The Pigweed Authors |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| // use this file except in compliance with the License. You may obtain a copy of |
| // the License at |
| // |
| // https://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| // License for the specific language governing permissions and limitations under |
| // the License. |
| #include "pw_stream_uart_mcuxpresso/interrupt_safe_writer.h" |
| |
| #include "fsl_clock.h" |
| #include "pw_function/scope_guard.h" |
| |
| namespace pw::stream { |
| |
| pw::Status InterruptSafeUartWriterMcuxpresso::Enable() { |
| usart_config_t usart_config; |
| USART_GetDefaultConfig(&usart_config); |
| usart_config.baudRate_Bps = baudrate_; |
| usart_config.enableRx = false; |
| usart_config.enableTx = true; |
| |
| // Acquire the clock_tree element. Note that this function only requires the |
| // IP clock and not the functional clock. However, ClockMcuxpressoClockIp |
| // only provides the combined element, so that's what we use here. |
| // Make sure it's released on any function exits through a scoped guard. |
| PW_TRY(clock_tree_element_.Acquire()); |
| pw::ScopeGuard guard([this] { clock_tree_element_.Release().IgnoreError(); }); |
| |
| if (USART_Init(base(), &usart_config, CLOCK_GetFreq(clock_name_)) != |
| kStatus_Success) { |
| return pw::Status::Internal(); |
| } |
| |
| return pw::OkStatus(); |
| } |
| |
| pw::Status InterruptSafeUartWriterMcuxpresso::DoWrite(pw::ConstByteSpan data) { |
| if (data.empty()) { |
| // USART_WriteBlocking() will abort if its data argument is null, even if |
| // length is zero. |
| return pw::OkStatus(); |
| } |
| |
| // Acquire the clock_tree_element. Use a scoped guard so it's released when |
| // this function returns. |
| PW_TRY(clock_tree_element_.Acquire()); |
| pw::ScopeGuard guard([this] { clock_tree_element_.Release().IgnoreError(); }); |
| |
| const status_t hal_status = USART_WriteBlocking( |
| base(), reinterpret_cast<const uint8_t*>(data.data()), data.size_bytes()); |
| return hal_status == kStatus_Success ? pw::OkStatus() |
| : pw::Status::Internal(); |
| } |
| |
| } // namespace pw::stream |