Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dw1000_driver_freertos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Colin Wulf
dw1000_driver_freertos
Commits
54c1d01f
Commit
54c1d01f
authored
9 years ago
by
Keno Garlichs
Browse files
Options
Downloads
Patches
Plain Diff
disabled the timer increment task. this is now done via software timer
parent
ab3d991b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Inc/dw1000.h
+1
-1
1 addition, 1 deletion
Inc/dw1000.h
Src/dw1000.c
+3
-2
3 additions, 2 deletions
Src/dw1000.c
with
4 additions
and
3 deletions
Inc/dw1000.h
+
1
−
1
View file @
54c1d01f
...
@@ -148,7 +148,7 @@ int dw1000_writeFrameIntoBuffer(uint16_t txBufferOffset, uint8_t *payload, uint1
...
@@ -148,7 +148,7 @@ int dw1000_writeFrameIntoBuffer(uint16_t txBufferOffset, uint8_t *payload, uint1
int
dw1000_transmitFrame
(
uint16_t
txBufferOffset
,
uint16_t
len
);
int
dw1000_transmitFrame
(
uint16_t
txBufferOffset
,
uint16_t
len
);
int
dw_1000_receiveFrameFromIsr
(
uint8_t
*
buffer
,
uint32_t
length
);
int
dw_1000_receiveFrameFromIsr
(
uint8_t
*
buffer
,
uint32_t
length
);
void
dw1000_extiCallback
(
void
);
void
dw1000_extiCallback
(
void
);
void
vTaskGlobalTimeIncrement
(
void
*
pvParameters
);
//
void vTaskGlobalTimeIncrement(void *pvParameters);
void
dw1000_generateConfig
(
uint16_t
mode
,
dwt_config_t
*
config
);
void
dw1000_generateConfig
(
uint16_t
mode
,
dwt_config_t
*
config
);
...
...
This diff is collapsed.
Click to expand it.
Src/dw1000.c
+
3
−
2
View file @
54c1d01f
...
@@ -395,7 +395,7 @@ int dw1000_transmitFrame(uint16_t txBufferOffset, uint16_t len){
...
@@ -395,7 +395,7 @@ int dw1000_transmitFrame(uint16_t txBufferOffset, uint16_t len){
return
DW1000_RET_OK
;
return
DW1000_RET_OK
;
}
}
/*
void vTaskGlobalTimeIncrement(void *pvParameters) {
void vTaskGlobalTimeIncrement(void *pvParameters) {
TickType_t xNextWakeTime;
TickType_t xNextWakeTime;
...
@@ -404,10 +404,11 @@ void vTaskGlobalTimeIncrement(void *pvParameters) {
...
@@ -404,10 +404,11 @@ void vTaskGlobalTimeIncrement(void *pvParameters) {
// Task is delayed until radio timestamp approximately overflows
// Task is delayed until radio timestamp approximately overflows
vTaskDelayUntil(&xNextWakeTime, 1000 / portTICK_PERIOD_MS);
vTaskDelayUntil(&xNextWakeTime, 1000 / portTICK_PERIOD_MS);
sync_local_time();
sync_local_time();
print_node_time
(
&
node_time
,
0
);
print_node_time(&node_time,
1
);
}
}
vTaskDelete( NULL);
vTaskDelete( NULL);
}
}
*/
void
dw1000_extiCallback
(
void
)
{
void
dw1000_extiCallback
(
void
)
{
dw1000Isr_handleInterrupt
();
dw1000Isr_handleInterrupt
();
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment