-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #159 from analogdevicesinc/tfcollins/stingray-enha…
…ncements
- Loading branch information
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,6 +153,17 @@ | |
%% API Functions | ||
methods (Hidden, Access = protected) | ||
|
||
function setupImpl(obj, data) | ||
if strcmp(obj.DataSource,'DMA') | ||
[email protected](obj, data); | ||
else | ||
[email protected](obj, data); | ||
end | ||
if obj.SkipInit | ||
obj.phyDev = getDev(obj, obj.phyDevName); | ||
end | ||
end | ||
|
||
function setupInit(obj) | ||
% Write all attributes to device once connected through set | ||
% methods | ||
|
Submodule +common
updated
6 files
+4 −4 | Attribute.m | |
+18 −0 | Debug.m | |
+14 −2 | DebugAttribute.m | |
+25 −0 | JESD204.m | |
+13 −1 | RxTx.m | |
+3 −3 | Tx.m |