Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
test_webhook
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
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
时海鑫
test_webhook
Commits
a166e055
Commit
a166e055
authored
Oct 10, 2025
by
时海鑫
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' into 'master'
test4 See merge request
!19
parents
e424bd99
dfde5d3b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
Sys_Scheduler.c
Sys_Scheduler.c
+10
-0
Sys_Scheduler.h
Sys_Scheduler.h
+9
-0
No files found.
Sys_Scheduler.c
0 → 100644
View file @
a166e055
#include "Sys_Scheduler.h"
#include "RTE.h"
void
Sys_Scheduler_Init
(
void
)
{
RTE_Tick_Timer_Stop
();
Sys_Scheduler_Start
(
SYS_TICK_INTERVAL
);
RTE_Tick_Timer_Start
(
SYS_TICK_INTERVAL
,
Sys_Scheduler_ISR
);
}
Sys_Scheduler.h
0 → 100644
View file @
a166e055
#include "Sys_Scheduler_Lib.h"
#define SYS_TICK_INTERVAL (1000UL)
/* us */
extern
void
Sys_Scheduler_Init
(
void
);
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