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
c393d39d
Commit
c393d39d
authored
10 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
Fix typos in debug assertions
parent
5b03d505
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
configs/samv71-xult/src/atmxt-xpro.h
+3
-3
3 additions, 3 deletions
configs/samv71-xult/src/atmxt-xpro.h
configs/samv71-xult/src/sam_ili9488.c
+2
-2
2 additions, 2 deletions
configs/samv71-xult/src/sam_ili9488.c
with
5 additions
and
5 deletions
configs/samv71-xult/src/atmxt-xpro.h
+
3
−
3
View file @
c393d39d
...
...
@@ -112,7 +112,7 @@
/* ILI9488 RGB requires use of LCD connector and SMC and DMA support */
# ifndef CONFIG_SAMV71XULT_MXTXPLND_LCD
# warning The ILI8488 LCD must be connect on EXT4 (CONFIG_SAMV71XULT_MXTXPLND_LCD)
# warning The ILI8488 LCD must be connect
ed
on
LCD
EXT4 (CONFIG_SAMV71XULT_MXTXPLND_LCD)
# undef HAVE_ILI9488_RGB
# endif
...
...
@@ -133,7 +133,7 @@
/* ILI9488 MCU requires use of EXT1 or EXT2 connector */
# if !defined(CONFIG_SAMV71XULT_MXTXPLND_EXT1) && !defined(CONFIG_SAMV71XULT_MXTXPLND_EXT2)
# warning ILI9488 MCU
requires
CONFIG_SAMV71XULT_MXTXPLND_EXT1
or EXT2
# warning ILI9488 MCU
must be connected or EXT1 or EXT2 (
CONFIG_SAMV71XULT_MXTXPLND_EXT1
/2)
# undef HAVE_ILI9488_MCU
# endif
...
...
@@ -318,7 +318,7 @@
# define IRQ_MXT_CHG SAM_IRQ_PD28
# endif
/* HAVE_MAXTOUCH */
/* ILI9488 RGB mode definitions when connected via LC
d
(EXT4) */
/* ILI9488 RGB mode definitions when connected via LC
D
(EXT4) */
# define GPIO_ILI9488_CDS (GPIO_OUTPUT | GPIO_CFG_DEFAULT | GPIO_OUTPUT_SET | \
GPIO_PORT_PIOC | GPIO_PIN30)
...
...
This diff is collapsed.
Click to expand it.
configs/samv71-xult/src/sam_ili9488.c
+
2
−
2
View file @
c393d39d
...
...
@@ -1115,7 +1115,7 @@ static int sam_putrun(fb_coord_t row, fb_coord_t col,
/* Buffer must be provided and aligned to a 16-bit address boundary */
lcdvdbg
(
"row: %d col: %d npixels: %d
\n
"
,
row
,
col
,
npixels
);
DEBUGASSERT
(
src
&&
((
uintptr_t
)
src
&
1
)
==
0
);
DEBUGASSERT
(
buffer
&&
((
uintptr_t
)
buffer
&
1
)
==
0
);
/* Determine the refresh window area */
...
...
@@ -1156,7 +1156,7 @@ static int sam_getrun(fb_coord_t row, fb_coord_t col, FAR uint8_t *buffer,
/* Buffer must be provided and aligned to a 16-bit address boundary */
lcdvdbg
(
"row: %d col: %d npixels: %d
\n
"
,
row
,
col
,
npixels
);
DEBUGASSERT
(
dest
&&
((
uintptr_t
)
dest
&
1
)
==
0
);
DEBUGASSERT
(
buffer
&&
((
uintptr_t
)
buffer
&
1
)
==
0
);
/* Determine the refresh window area */
...
...
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