Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Missing Attribute for sc_end in the FAST.Farm Super Controller #749

Merged
merged 2 commits into from
May 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/servodyn/src/BladedInterface.f90
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ SUBROUTINE BladedInterface_Init(u, p, m, xd, y, InputFileData, InitInp, ErrStat,

CALL DispNVD( BladedInterface_Ver ) ! Display the version of this interface

p%UseLegacyInterface = InputFileData%UseLegacyInterface
p%UseLegacyInterface = .TRUE. !InputFileData%UseLegacyInterface

m%dll_data%Ptch_Cntrl = InputFileData%Ptch_Cntrl
m%dll_data%Gain_OM = InputFileData%Gain_OM ! Optimal mode gain (Nm/(rad/s)^2)
Expand Down
1 change: 1 addition & 0 deletions modules/supercontroller/src/SC_DLL.F90
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ subroutine sc_end ( errStat, errMsg ) bind (C, NAME='sc_end')

implicit none
#ifndef IMPLICIT_DLLEXPORT
!DEC$ ATTRIBUTES DLLEXPORT :: sc_end
!GCC$ ATTRIBUTES DLLEXPORT :: sc_end
#endif

Expand Down