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
3d623e23
Commit
3d623e23
authored
16 years ago
by
patacongo
Browse files
Options
Downloads
Patches
Plain Diff
cosmetic
git-svn-id:
svn://svn.code.sf.net/p/nuttx/code/trunk@1198
42af7a65-404d-4744-a932-0658087f49c3
parent
5f905129
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/sh/src/common/up_internal.h
+1
-1
1 addition, 1 deletion
arch/sh/src/common/up_internal.h
arch/sh/src/sh1/sh1_lowputc.c
+2
-2
2 additions, 2 deletions
arch/sh/src/sh1/sh1_lowputc.c
arch/sh/src/sh1/sh1_vector.S
+2
-2
2 additions, 2 deletions
arch/sh/src/sh1/sh1_vector.S
with
5 additions
and
5 deletions
arch/sh/src/common/up_internal.h
+
1
−
1
View file @
3d623e23
...
...
@@ -52,7 +52,7 @@
#undef CONFIG_SUPPRESS_INTERRUPTS
/* DEFINED: Do not enable interrupts */
#undef CONFIG_SUPPRESS_TIMER_INTS
/* DEFINED: No timer */
#undef CONFIG_SUPPRESS_SERIAL_INTS
/* DEFINED: Console will poll */
#undef CONFIG_SUPPRESS_SCI_CONFIG
/* DEFINED: Do not reconfig SCI */
#undef CONFIG_SUPPRESS_SCI_CONFIG
/* DEFINED: Do not reconfig SCI */
#undef CONFIG_DUMP_ON_EXIT
/* DEFINED: Dump task state on exit */
/* Determine which (if any) console driver to use */
...
...
This diff is collapsed.
Click to expand it.
arch/sh/src/sh1/sh1_lowputc.c
+
2
−
2
View file @
3d623e23
...
...
@@ -174,9 +174,9 @@
**************************************************************************/
#ifdef HAVE_CONSOLE
int
inline
up_txready
(
void
)
static
inline
int
up_txready
(
void
)
{
return
getreg8
(
SH1_SCI_BASE
+
SH1_SCI_SSR_OFFSET
)
&
SH1_SCISSR_TDRE
;
return
(
getreg8
(
SH1_SCI_BASE
+
SH1_SCI_SSR_OFFSET
)
&
SH1_SCISSR_TDRE
!=
0
)
;
}
#endif
...
...
This diff is collapsed.
Click to expand it.
arch/sh/src/sh1/sh1_vector.S
+
2
−
2
View file @
3d623e23
...
...
@@ -339,7 +339,7 @@ _up_vector:
#if CONFIG_ARCH_INTERRUPTSTACK > 3
mov.l
.
Lintstack
,
r15
/*
SP
=
interrupt
stack
base
*/
mov.l
r5
,
@
sp
/*
Save
the
user
stack
pointer
(
pre
-
decremented
)
*/
mov.l
r5
,
@
r15
/*
Save
the
user
stack
pointer
(
pre
-
decremented
)
*/
/
*
Dispatch
the
interrupt
*/
...
...
@@ -349,7 +349,7 @@ _up_vector:
/
*
Recover
the
user
stack
point
*/
mov.l
@
sp
,
r15
mov.l
@
15
,
r15
#else
/
*
Dispatch
the
interrupt
*/
...
...
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