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
e38d16d1
Commit
e38d16d1
authored
18 years ago
by
patacongo
Browse files
Options
Downloads
Patches
Plain Diff
Fix typo in name
git-svn-id:
svn://svn.code.sf.net/p/nuttx/code/trunk@86
42af7a65-404d-4744-a932-0658087f49c3
parent
c9b5d315
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
arch/c5471/include/irq.h
+4
-4
4 additions, 4 deletions
arch/c5471/include/irq.h
arch/c5471/src/up_copystate.c
+1
-1
1 addition, 1 deletion
arch/c5471/src/up_copystate.c
arch/c5471/src/up_sigdeliver.c
+1
-1
1 addition, 1 deletion
arch/c5471/src/up_sigdeliver.c
with
6 additions
and
6 deletions
arch/c5471/include/irq.h
+
4
−
4
View file @
e38d16d1
...
...
@@ -78,8 +78,8 @@
#define REG_R15 (15)
#define REG_CPSR (16)
#define XCPTCONTE
S
T_REGS (17)
#define XCPTCONTEXT_SIZE (4 * XCPTCONTE
S
T_REGS)
#define XCPTCONTE
X
T_REGS (17)
#define XCPTCONTEXT_SIZE (4 * XCPTCONTE
X
T_REGS)
#define REG_A1 REG_R0
#define REG_A2 REG_R1
...
...
@@ -144,7 +144,7 @@
*---
* 5 (XCPTCONTEXT_IRQ_REGS)
*
* For a total of 17 (XCPTCONTE
S
T_REGS)
* For a total of 17 (XCPTCONTE
X
T_REGS)
*/
#ifndef __ASSEMBLY__
...
...
@@ -165,7 +165,7 @@ struct xcptcontext
/* Register save area */
uint32
regs
[
XCPTCONTE
S
T_REGS
];
uint32
regs
[
XCPTCONTE
X
T_REGS
];
};
#endif
...
...
This diff is collapsed.
Click to expand it.
arch/c5471/src/up_copystate.c
+
1
−
1
View file @
e38d16d1
...
...
@@ -67,7 +67,7 @@
void
up_copystate
(
uint32
*
dest
,
uint32
*
src
)
{
int
i
;
for
(
i
=
0
;
i
<
XCPTCONTE
S
T_REGS
;
i
++
)
for
(
i
=
0
;
i
<
XCPTCONTE
X
T_REGS
;
i
++
)
{
*
dest
++
=
*
src
++
;
}
...
...
This diff is collapsed.
Click to expand it.
arch/c5471/src/up_sigdeliver.c
+
1
−
1
View file @
e38d16d1
...
...
@@ -77,7 +77,7 @@
void
up_sigdeliver
(
void
)
{
_TCB
*
rtcb
=
(
_TCB
*
)
g_readytorun
.
head
;
uint32
regs
[
XCPTCONTE
S
T_REGS
];
uint32
regs
[
XCPTCONTE
X
T_REGS
];
sig_deliver_t
sigdeliver
;
up_ledon
(
LED_SIGNAL
);
...
...
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