Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
multipass
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
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
derf
multipass
Commits
7343085d
Commit
7343085d
authored
6 years ago
by
Birte Kristina Friesel
Browse files
Options
Downloads
Patches
Plain Diff
Blinkenrocket: Configurable I2C speed
parent
720d72a7
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
src/arch/blinkenrocket/Makefile.inc
+4
-0
4 additions, 0 deletions
src/arch/blinkenrocket/Makefile.inc
src/arch/blinkenrocket/driver/i2c.cc
+6
-2
6 additions, 2 deletions
src/arch/blinkenrocket/driver/i2c.cc
with
10 additions
and
2 deletions
src/arch/blinkenrocket/Makefile.inc
+
4
−
0
View file @
7343085d
...
...
@@ -27,6 +27,10 @@ else ifneq ($(findstring i2c,${arch_drivers}), )
TARGETS
+=
src/arch/blinkenrocket/driver/i2c.cc
endif
ifneq
(${i2c_freq}, )
COMMON_FLAGS
+=
-DF_I2C
=
${
i2c_freq
}
endif
OBJECTS
=
${
TARGETS:.cc
=
.o
}
.cc.o
:
...
...
This diff is collapsed.
Click to expand it.
src/arch/blinkenrocket/driver/i2c.cc
+
6
−
2
View file @
7343085d
...
...
@@ -3,6 +3,10 @@
#include
<avr/io.h>
#include
<avr/interrupt.h>
#ifndef F_I2C
#define F_I2C 100000UL
#endif
inline
void
await_twint
(
unsigned
char
twcr_values
)
{
#if 1
...
...
@@ -27,7 +31,7 @@ static signed char i2c_start_read(unsigned char addr)
if
(
!
(
TWSR
&
0x18
))
// 0x08 == START ok, 0x10 == RESTART ok
return
-
1
;
// Note: An adress with read bit set ("... | 1") causes the TWI
mo
module
// Note: An adress with read bit set ("... | 1") causes the TWI module
// to switch to Master Receive mode
TWDR
=
(
addr
<<
1
)
|
1
;
await_twint
(
_BV
(
TWEN
));
...
...
@@ -106,7 +110,7 @@ static signed char i2c_receive(uint8_t len, uint8_t *data)
signed
char
I2C
::
setup
()
{
TWSR
=
0
;
TWBR
=
((
F_CPU
/
100000UL
)
-
16
)
/
2
;
TWBR
=
((
F_CPU
/
F_I2C
)
-
16
)
/
2
;
return
0
;
}
...
...
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