Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
cm-projects
RIOT
Commits
9a7a8a17
Commit
9a7a8a17
authored
7 years ago
by
Sebastian Meiling
Browse files
Options
Downloads
Patches
Plain Diff
doc, tests: fix non-standard quotes
parent
6ac0922c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/driver_hd44780/README.md
+4
-4
4 additions, 4 deletions
tests/driver_hd44780/README.md
tests/shell/main.c
+1
-1
1 addition, 1 deletion
tests/shell/main.c
with
5 additions
and
5 deletions
tests/driver_hd44780/README.md
+
4
−
4
View file @
9a7a8a17
...
...
@@ -13,12 +13,12 @@ your board use the following minimal pinout for the LCD (i.e., Arduino here):
-
Pin 1 is connected directly to GND.
-
Pin 2 is connected directly to VCC +5V.
-
Pin 3 is used to set LCD contrast, for max use +5V or a 10k potentiometer.
-
Pin 4 (RS or
“
register select
”
) is connected to pin 2 on the Arduino
-
Pin 5 (RW or
“
read/write
”
) is connected directly to GND, i.e., unused.
-
Pin 4 (RS or
"
register select
"
) is connected to pin 2 on the Arduino
-
Pin 5 (RW or
"
read/write
"
) is connected directly to GND, i.e., unused.
Also note: if you connect RW to your board that the LCD is driven by 5V, while
many boards internally run at 3.3V - so this could fry the board :/
-
Pin 6 (EN or
“
enable
”
) is connected to pin 3 on the Arduino.
-
Pins 7
–
10: Not connected.
-
Pin 6 (EN or
"
enable
"
) is connected to pin 3 on the Arduino.
-
Pins 7
-
10: Not connected.
-
Pin 11 on the LCD is connected to pin 4 on the Arduino.
-
Pin 12 on the LCD is connected to pin 5 on the Arduino.
-
Pin 13 on the LCD is connected to pin 6 on the Arduino.
...
...
This diff is collapsed.
Click to expand it.
tests/shell/main.c
+
1
−
1
View file @
9a7a8a17
...
...
@@ -45,7 +45,7 @@ static int print_testend(int argc, char **argv)
static
int
print_echo
(
int
argc
,
char
**
argv
)
{
for
(
int
i
=
0
;
i
<
argc
;
++
i
)
{
printf
(
"
“%s”
"
,
argv
[
i
]);
printf
(
"
\"
%s
\"
"
,
argv
[
i
]);
}
puts
(
""
);
...
...
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