Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
Ardupilot
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
OpenSource
Ardupilot
Commits
fd5e1c2f
Commit
fd5e1c2f
authored
13 years ago
by
rmackay9
Browse files
Options
Downloads
Patches
Plain Diff
Filter - added FilterWithBuffer typedefs for int32t and uint32 for ease of use
parent
99cdc691
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/Filter/FilterWithBuffer.h
+13
-0
13 additions, 0 deletions
libraries/Filter/FilterWithBuffer.h
with
13 additions
and
0 deletions
libraries/Filter/FilterWithBuffer.h
+
13
−
0
View file @
fd5e1c2f
...
@@ -55,6 +55,19 @@ typedef FilterWithBuffer<uint16_t,5> FilterWithBufferUInt16_Size5;
...
@@ -55,6 +55,19 @@ typedef FilterWithBuffer<uint16_t,5> FilterWithBufferUInt16_Size5;
typedef
FilterWithBuffer
<
uint16_t
,
6
>
FilterWithBufferUInt16_Size6
;
typedef
FilterWithBuffer
<
uint16_t
,
6
>
FilterWithBufferUInt16_Size6
;
typedef
FilterWithBuffer
<
uint16_t
,
7
>
FilterWithBufferUInt16_Size7
;
typedef
FilterWithBuffer
<
uint16_t
,
7
>
FilterWithBufferUInt16_Size7
;
typedef
FilterWithBuffer
<
int32_t
,
2
>
FilterWithBufferInt32_Size2
;
typedef
FilterWithBuffer
<
int32_t
,
3
>
FilterWithBufferInt32_Size3
;
typedef
FilterWithBuffer
<
int32_t
,
4
>
FilterWithBufferInt32_Size4
;
typedef
FilterWithBuffer
<
int32_t
,
5
>
FilterWithBufferInt32_Size5
;
typedef
FilterWithBuffer
<
int32_t
,
6
>
FilterWithBufferInt32_Size6
;
typedef
FilterWithBuffer
<
int32_t
,
7
>
FilterWithBufferInt32_Size7
;
typedef
FilterWithBuffer
<
uint32_t
,
2
>
FilterWithBufferUInt32_Size2
;
typedef
FilterWithBuffer
<
uint32_t
,
3
>
FilterWithBufferUInt32_Size3
;
typedef
FilterWithBuffer
<
uint32_t
,
4
>
FilterWithBufferUInt32_Size4
;
typedef
FilterWithBuffer
<
uint32_t
,
5
>
FilterWithBufferUInt32_Size5
;
typedef
FilterWithBuffer
<
uint32_t
,
6
>
FilterWithBufferUInt32_Size6
;
typedef
FilterWithBuffer
<
uint32_t
,
7
>
FilterWithBufferUInt32_Size7
;
// Constructor
// Constructor
template
<
class
T
,
uint8_t
FILTER_SIZE
>
template
<
class
T
,
uint8_t
FILTER_SIZE
>
FilterWithBuffer
<
T
,
FILTER_SIZE
>::
FilterWithBuffer
()
:
FilterWithBuffer
<
T
,
FILTER_SIZE
>::
FilterWithBuffer
()
:
...
...
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