- The signals data is read into a variable “data” inside the function “scansAvailable_Callback”. (Line 112). “data” is a matrix that contains signal levels and channels.
- The plot is populated with the data from “app.DataFIFOBuffer” variable returned by the function “storeDataInFIFO”. The last parameter of the function is “data(:, 1)” which means the signal values of the first channel are passed. (Line 116)
- In the function, “detectTrigger”, the trigConfig.Channel property is set to 1. This property is used in checking the trigger condition. The signal values in the first channel are used in checking the trigger condition. (Line 587)
How to make an app which starts recording in channel number two when the particular level trigger is crossed in channel number one?
1 回表示 (過去 30 日間)
古いコメントを表示
Ramdev Rajeshbhai Gohil
2022 年 7 月 23 日
コメント済み: Ramdev Rajeshbhai Gohil
2024 年 2 月 6 日
I saw an AnalogTriggerApp in matlab app which records the signal from a channel when certain trigger level is reached in the same channel. It also records some pre-trigger data. I want to make some change such that data from one channel starts recording when the trigger level is crossed in other channel.
0 件のコメント
採用された回答
Ravi
2024 年 1 月 23 日
Hi Ramdev Rajeshbhai Gohil,
The objective is to record signals on one channel if the trigger level crosses threshold on another channel. That is possible in AnalogTriggerApp. To do that open the AnalogTriggerApp and switch to the code view of the app to know about few insights. In case you have not modified the source code, then you can refer to the line numbers as well.
In a nutshell, so far, trigger condition is checked against the channel 1, and data that is plotted also belongs to the first channel.
If you want to record data in channel 1, by checking a trigger against the channel 2, then you can do the following, set the trigConfig.Channel property to 2. This way you can check for trigger condition on one channel, and record signals on another channel.
I hope this answers your question.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Simultaneous and Synchronized Operations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!