TimJTi commented on code in PR #3068:
URL: https://github.com/apache/nuttx-apps/pull/3068#discussion_r2111671109


##########
boot/nxboot/nxboot_main.c:
##########
@@ -28,28 +28,233 @@
 
 #include <stdio.h>
 #include <syslog.h>
+#include <nuttx/ascii.h>
+#include <sys/param.h>
 
 #include <nxboot.h>
 #include <sys/boardctl.h>
 
+/****************************************************************************
+ * Private Types
+ ****************************************************************************/
+
+typedef struct progress_msgs_s
+{
+  enum progress_msg_e idx; /* Index to the message */
+  const char         *msg; /* Corresponsing text message */
+} progress_msgs_t;
+
+/****************************************************************************
+ * Public Data
+ ****************************************************************************/
+
+bool progress_dots_started = false;

Review Comment:
   done



##########
boot/nxboot/nxboot_main.c:
##########
@@ -28,28 +28,233 @@
 
 #include <stdio.h>
 #include <syslog.h>
+#include <nuttx/ascii.h>
+#include <sys/param.h>
 
 #include <nxboot.h>
 #include <sys/boardctl.h>
 
+/****************************************************************************
+ * Private Types
+ ****************************************************************************/
+
+typedef struct progress_msgs_s
+{
+  enum progress_msg_e idx; /* Index to the message */
+  const char         *msg; /* Corresponsing text message */
+} progress_msgs_t;
+
+/****************************************************************************
+ * Public Data
+ ****************************************************************************/
+
+bool progress_dots_started = false;
+#ifdef CONFIG_NXBOOT_PRINTF_PROGRESS_PERCENT
+bool progress_percent_started = false;

Review Comment:
   done



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to