Skip to content
Merged
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
4 changes: 2 additions & 2 deletions libEDSsharp/eds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -333,18 +333,18 @@
/// </summary>
public partial class InfoSection
{
protected Dictionary<string, string> section;

Check warning on line 336 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.section'

protected string infoheader;

Check warning on line 338 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.infoheader'
protected string edssection;

Check warning on line 339 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.edssection'

public enum Filetype

Check warning on line 341 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.Filetype'
{
File_EDS,

Check warning on line 343 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.Filetype.File_EDS'
File_DCF

Check warning on line 344 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.Filetype.File_DCF'
}

public bool GetField(string name, string varname)

Check warning on line 347 in libEDSsharp/eds.cs

View workflow job for this annotation

GitHub Actions / build (net481, Release)

Missing XML comment for publicly visible type or member 'InfoSection.GetField(string, string)'
{
FieldInfo f = null;

Expand Down Expand Up @@ -1430,9 +1430,9 @@
}

/// <summary>
/// Return the size in bytes for the given CANopen datatype of this object, eg the size of what ever the datatype field is set to
/// Return the size in bits for the given CANopen datatype of this object, eg the size of what ever the datatype field is set to
/// </summary>
/// <returns>no of bytes</returns>
/// <returns>no of bits</returns>
public int Sizeofdatatype()
{
DataType dt = datatype;
Expand Down
Loading