Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
car-controlserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenzhongjian
car-controlserver
Commits
286d82f0
Commit
286d82f0
authored
Dec 26, 2025
by
957dd
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/tts_bug_reduce' into 'master'
Feature/tts bug reduce See merge request
!94
parents
a9d72472
41cc8add
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
2 deletions
+6
-2
main
build/main
+0
-0
gpio_common.h
drivers/gpio/gpio_common.h
+1
-0
audiotts_play.c
drivers/sensors/audiotts_play.c
+5
-1
fcsgdevintroduce.md
fcsgdevintroduce.md
+0
-1
No files found.
build/main
View file @
286d82f0
No preview for this file type
drivers/gpio/gpio_common.h
View file @
286d82f0
#ifndef GPIO_COMMON_H
#ifndef GPIO_COMMON_H
#define GPIO_COMMON_H
#define GPIO_COMMON_H
#include "device_init.h"
#include "device_init.h"
#include "gpio_init.h"
#include "gpio_init.h"
#include "gpio_control.h"
#include "gpio_control.h"
...
...
drivers/sensors/audiotts_play.c
View file @
286d82f0
...
@@ -467,7 +467,11 @@ int mqtt_audio_tts(cJSON *body){
...
@@ -467,7 +467,11 @@ int mqtt_audio_tts(cJSON *body){
*/
*/
void
video_tts_play
()
{
void
video_tts_play
()
{
if
(
audio_tts_index
==
1
)
{
if
(
audio_tts_index
==
1
)
{
audio_tts
(
get_audio_text_tts
(
NULL
,
1
));
if
(
audio_tts
(
get_audio_text_tts
(
NULL
,
1
))
!=
0
){
my_zlog_error
(
"audio_tts fail"
);
audio_tts_index
=
0
;
return
;
}
pid_t
pid
=
fork
();
pid_t
pid
=
fork
();
if
(
pid
==
0
)
{
if
(
pid
==
0
)
{
...
...
fcsgdevintroduce.md
View file @
286d82f0
...
@@ -6,7 +6,6 @@
...
@@ -6,7 +6,6 @@
### 环境要求
### 环境要求
-
香橙派使用了wiringPi库,换linux板需要改变
-
香橙派使用了wiringPi库,换linux板需要改变
-
需要mosquitto和cjson,没有加入静态编译,需要使用apt安装
-
curl库一般在linux中带有,如果没有带有,也需下载安装
-
curl库一般在linux中带有,如果没有带有,也需下载安装
### 代码文件介绍
### 代码文件介绍
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment