diff --git a/Controllers/PointsController.cs b/Controllers/PointsController.cs index f1e94db..6dd2399 100644 --- a/Controllers/PointsController.cs +++ b/Controllers/PointsController.cs @@ -6,7 +6,7 @@ using Microsoft.AspNetCore.Mvc; namespace API_SequentMicrosystems.Controllers { - [Tags("Internal Saving Points (Recommended only use \"Actual\" endpoint for read all data at once. Saving points is not recomended)")] + [Tags("Internal Saving Points (Recommended use only \"Actual\" endpoint for read all data at once. Saving points is not recomended)")] [Route("Points")] [ApiController] public class PointsController : ControllerBase diff --git a/Controllers/RTDDataAcquisitionController.cs b/Controllers/RTDDataAcquisitionController.cs index 1f1ca30..dd73afe 100644 --- a/Controllers/RTDDataAcquisitionController.cs +++ b/Controllers/RTDDataAcquisitionController.cs @@ -19,9 +19,9 @@ namespace API_SequentMicrosystems.Controllers // GET: api/ /// - /// Read data from all configured cards + /// Read data from all configured RTD cards /// - /// + /// SortedList with data from configured RTD-8 Cards [HttpGet] public SortedList Get() { @@ -32,7 +32,7 @@ namespace API_SequentMicrosystems.Controllers /// /// Read data from All RTD cards /// - /// + /// SortedList with data from all conected RTD-8 cards [HttpGet("All")] public SortedList GetAll() { @@ -41,10 +41,10 @@ namespace API_SequentMicrosystems.Controllers // GET api//5 /// - /// Read data from specified card from stack + /// Read data from specified by card id /// - /// - /// data from specified card + /// 0-7 + /// Array with data from specified card [HttpGet("{stack}")] public float[] GetAll(byte stack) { @@ -55,7 +55,7 @@ namespace API_SequentMicrosystems.Controllers /// /// Get Configured Names of Chanels /// - /// + /// Sorted List of configured Names responded with data by Ids of SortedList and array [HttpGet("Names")] public SortedList GetNames() { @@ -66,7 +66,7 @@ namespace API_SequentMicrosystems.Controllers /// /// Post configured names of chanels /// - /// + /// Sorted List of configured Names responded with data by Ids of SortedList and array [HttpPost("Names")] public void PostNames([FromBody] SortedList data) { @@ -77,7 +77,7 @@ namespace API_SequentMicrosystems.Controllers /// /// Get preconfigured Names /// - /// + /// List of preconfigured names [HttpGet("Names/Preconfigured")] public List GetNamesPreconfigured() { @@ -88,7 +88,7 @@ namespace API_SequentMicrosystems.Controllers /// /// Post preconfigured names /// - /// + /// List of preconfigured names [HttpPost("Names/Preconfigured")] public void PostNamesPreconfigured([FromBody] List data) { @@ -99,7 +99,7 @@ namespace API_SequentMicrosystems.Controllers /// /// Get Calibration data /// - /// + /// Sorted List of calibration data responded with data by Ids of SortedList and array [HttpGet("Calibration")] public SortedList GetCalibration() { @@ -110,7 +110,7 @@ namespace API_SequentMicrosystems.Controllers /// /// Post Calibration data /// - /// + /// Sorted List of calibration data responded with data by Ids of SortedList and array [HttpPost("Calibration")] public void PostCalibration([FromBody] SortedList data) {