From 4899ffcbaad7d605797ec222389175ca6a01ea4d Mon Sep 17 00:00:00 2001 From: Ben Date: Thu, 15 Jun 2023 12:02:13 -0400 Subject: [PATCH] still need to set default baud --- components/bm1397/bm1397.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/bm1397/bm1397.c b/components/bm1397/bm1397.c index 9251c73b..78b22292 100644 --- a/components/bm1397/bm1397.c +++ b/components/bm1397/bm1397.c @@ -206,7 +206,7 @@ static void _send_init(u_int64_t frequency) { unsigned char init6[9] = {0x00, FAST_UART_CONFIGURATION, 0x06, 0x00, 0x00, 0x0F}; //init6 - fast_uart_configuration _send_BM1397((TYPE_CMD | GROUP_ALL | CMD_WRITE), init6, 6, false); - //BM1397_set_default_baud(); + BM1397_set_default_baud(); BM1397_send_hash_frequency(frequency); }