origen_core_support 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/version.rb +1 -1
- data/pattern/shared/j750/j750_halt.rb +8 -8
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4033dbe86db33f2449799d5af7b17ff9d372182
|
4
|
+
data.tar.gz: 1a614bade7fa98a4c78097fed327808717d01a61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 149e4ec8be23c466053ce371030964dfb793fae31b55bca56a6e73accb41965fddfbae45572931d50682d0551dadd867ff8f60b3e47274db76643daa510ecd22
|
7
|
+
data.tar.gz: a8881c40808b21ac6478b1d8d6e536b2135cea841df06eff03991759bac93ba136aa7d434915ffe086058301971b3bc8f40654103ca9e294f1ac53a942367b88
|
data/config/version.rb
CHANGED
@@ -12,13 +12,13 @@ Pattern.create(:end_with_halt => true) do
|
|
12
12
|
$tester.cycle
|
13
13
|
end
|
14
14
|
|
15
|
-
ss "Test that basic
|
15
|
+
ss "Test that basic pin group manipulation works"
|
16
16
|
if !$tester.respond_to?('hpt_mode')
|
17
|
-
$nvm.
|
17
|
+
$nvm.pins(:porta).drive(0x55)
|
18
18
|
$tester.cycle
|
19
|
-
$nvm.
|
19
|
+
$nvm.pins(:porta).expect(0xAA)
|
20
20
|
$tester.cycle
|
21
|
-
$nvm.
|
21
|
+
$nvm.pins(:porta)[1].dont_care
|
22
22
|
$tester.cycle
|
23
23
|
end
|
24
24
|
|
@@ -88,17 +88,17 @@ Pattern.create(:end_with_halt => true) do
|
|
88
88
|
if !$tester.respond_to?('hpt_mode')
|
89
89
|
ss "Test looping, these vectors should be executed once"
|
90
90
|
$tester.loop_vector("test_loop_1", 1) do
|
91
|
-
$nvm.
|
91
|
+
$nvm.pins(:porta).drive(0xAA)
|
92
92
|
$tester.cycle
|
93
|
-
$nvm.
|
93
|
+
$nvm.pins(:porta).drive(0x55)
|
94
94
|
$tester.cycle
|
95
95
|
end
|
96
96
|
|
97
97
|
ss "Test looping, these vectors should be executed 3 times"
|
98
98
|
$tester.loop_vector("test_loop_2", 3) do
|
99
|
-
$nvm.
|
99
|
+
$nvm.pins(:porta).drive(0xAA)
|
100
100
|
$tester.cycle
|
101
|
-
$nvm.
|
101
|
+
$nvm.pins(:porta).drive(0x55)
|
102
102
|
$tester.cycle
|
103
103
|
end
|
104
104
|
else
|