Skip to content

Commit

Permalink
Fix 1
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxineMuster authored Jan 11, 2025
1 parent f03efce commit 2ae7eb5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/driver/drv_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include "drv_bl0937.h"
#include "drv_bl0942.h"
#include "drv_bl_shared.h"
#include "drv_neo6m.h"
#include "drv_cse7766.h"
#include "drv_ir.h"
#include "drv_local.h"
Expand Down Expand Up @@ -152,6 +153,13 @@ static driver_t g_drivers[] = {
//drvdetail:"requires":""}
{ "BL0942", BL0942_UART_Init, BL0942_UART_RunEverySecond, BL09XX_AppendInformationToHTTPIndexPage, NULL, NULL, NULL, false },
#endif
#if ENABLE_DRIVER_NEO6M
//drvdetail:{"name":"NEO6M",
//drvdetail:"title":"TODO",
//drvdetail:"descr":"NEO6M is a GPS chip which uses UART protocol for communication. By default, it uses 9600 baud, but you can also enable it with other baud rates by using 'startDriver NEO6M <rate>'.",
//drvdetail:"requires":""}
{ "NEO6M", NEO6M_UART_Init, NEO6M_UART_RunEverySecond, NEO6M_AppendInformationToHTTPIndexPage, NULL, NULL, NULL, false },
#endif
#if ENABLE_DRIVER_PWM_GROUP
//drvdetail:{"name":"PWMG",
//drvdetail:"title":"TODO",
Expand Down

0 comments on commit 2ae7eb5

Please sign in to comment.