Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
f4grx
NuttX RTOS
Commits
93aae8c2
Commit
93aae8c2
authored
11 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
SAMA5 CAN: Add board-specific initialization logic
parent
bfdee0f0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog
+3
-0
3 additions, 0 deletions
ChangeLog
configs/sama5d3x-ek/README.txt
+1
-1
1 addition, 1 deletion
configs/sama5d3x-ek/README.txt
configs/sama5d3x-ek/src/Makefile
+4
-0
4 additions, 0 deletions
configs/sama5d3x-ek/src/Makefile
with
8 additions
and
1 deletion
ChangeLog
+
3
−
0
View file @
93aae8c2
...
...
@@ -5954,3 +5954,6 @@
completion after and address with data write and on any data
write so that the device is complete before WRDI is sent. From
David Sidrane (2013-11-2).
* configs/sama5/src/sam_can.c: Add CAN initialization logic
(2013-11-3).
This diff is collapsed.
Click to expand it.
configs/sama5d3x-ek/README.txt
+
1
−
1
View file @
93aae8c2
...
...
@@ -705,7 +705,7 @@ CAN Usage
Only messages that have IDs that match the CONFIG_SAMA5_CANn_ADDRn when both
the received and the configured address are masked by CONFIG_SAMA5_CANn_MASKn
will be accepted. For ea
c
mple, if the mask is all ones, then only messasges
will be accepted. For e
x
ample, if the mask is all ones, then only messasges
with exact address matches will be accepted; if the mask is all zeroes than
any address will be accepted.
...
...
This diff is collapsed.
Click to expand it.
configs/sama5d3x-ek/src/Makefile
+
4
−
0
View file @
93aae8c2
...
...
@@ -110,6 +110,10 @@ ifeq ($(CONFIG_ADC),y)
CSRCS
+=
sam_adc.c
endif
ifeq
($(CONFIG_CAN),y)
CSRCS
+=
sam_can.c
endif
ifeq
($(CONFIG_USBMSC),y)
CSRCS
+=
sam_usbmsc.c
endif
...
...
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