Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
etherlabmaster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
ICS Control System Infrastructure
etherlabmaster
Commits
450224c8
Commit
450224c8
authored
15 years ago
by
Florian Pose
Browse files
Options
Downloads
Patches
Plain Diff
Fixed mailbox usage for slaves that do not provide sync manager
configurations.
parent
814cc5a0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
master/fsm_slave_config.c
+4
-4
4 additions, 4 deletions
master/fsm_slave_config.c
with
4 additions
and
4 deletions
master/fsm_slave_config.c
+
4
−
4
View file @
450224c8
...
...
@@ -288,7 +288,7 @@ void ec_fsm_slave_config_enter_clear_sync(
ec_datagram_t
*
datagram
=
fsm
->
datagram
;
size_t
sync_size
;
if
(
!
slave
->
sii
.
sync_count
)
{
// FIXME use
base_sync_count
?
if
(
!
slave
->
base_sync_count
)
{
// no sync managers
ec_fsm_slave_config_enter_dc_clear_assign
(
fsm
);
return
;
...
...
@@ -298,7 +298,7 @@ void ec_fsm_slave_config_enter_clear_sync(
EC_DBG
(
"Clearing sync manager configurations of slave %u...
\n
"
,
slave
->
ring_position
);
sync_size
=
EC_SYNC_PAGE_SIZE
*
slave
->
sii
.
sync_count
;
sync_size
=
EC_SYNC_PAGE_SIZE
*
slave
->
base_
sync_count
;
// clear sync manager configurations
ec_datagram_fpwr
(
datagram
,
slave
->
station_address
,
0x0800
,
sync_size
);
...
...
@@ -602,9 +602,9 @@ void ec_fsm_slave_config_enter_mbox_sync(
EC_DIR_INVALID
,
// use default direction
datagram
->
data
+
EC_SYNC_PAGE_SIZE
);
slave
->
configured_tx_mailbox_offset
=
slave
->
sii
.
boot
_tx_mailbox_offset
;
slave
->
sii
.
std
_tx_mailbox_offset
;
slave
->
configured_tx_mailbox_size
=
slave
->
sii
.
boot
_tx_mailbox_size
;
slave
->
sii
.
std
_tx_mailbox_size
;
}
fsm
->
take_time
=
1
;
...
...
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