You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2020/02/14 14:45:45 UTC

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #279: tiva/lm3s6965-ek: Add CONFIG_BOARD_LATE_INITIALIZE

patacongo commented on a change in pull request #279: tiva/lm3s6965-ek: Add CONFIG_BOARD_LATE_INITIALIZE
URL: https://github.com/apache/incubator-nuttx/pull/279#discussion_r379467853
 
 

 ##########
 File path: boards/arm/tiva/lm3s6965-ek/src/Makefile
 ##########
 @@ -46,4 +46,8 @@ ifeq ($(CONFIG_NX_LCDDRIVER),y)
 CSRCS += lm_oled.c
 endif
 
+ifeq ($(CONFIG_BOARD_LATE_INITIALIZE),y)
+  CSRCS += lm_bringup.c
+endif
+
 
 Review comment:
   Normally in most existing configuration, board_app_initialize() and board_late_initialize() both call the bringup() functions.  These are two alternative ways to do the same thing:  Either the initialization is done on a separate initialization thread, or on the main thread of the application.  But, in either case, the initialization should be the same.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services