forked from M-Labs/web2019
shop: add Pounder (#87)
Closes #42 Reviewed-on: M-Labs/web2019#87 Co-authored-by: Egor Savkin <es@m-labs.hk> Co-committed-by: Egor Savkin <es@m-labs.hk>
This commit is contained in:
parent
23d404a7ce
commit
b3964ec2c9
|
@ -19,7 +19,7 @@ The Sinara 8452 DSP is a CPU-based dual-channel digital signal processing platfo
|
||||||
- connectors for optional analog front-end (AFE) module
|
- connectors for optional analog front-end (AFE) module
|
||||||
- IDC connectors for BNC-IDC/SMA-IDC extension for digital IO and aux analog inputs and outputs
|
- IDC connectors for BNC-IDC/SMA-IDC extension for digital IO and aux analog inputs and outputs
|
||||||
|
|
||||||
It can be used as a general-purpose PID controller. Several AFE extensions are under development including high current power supply for magnets.
|
It can be used as a general-purpose PID controller. Several AFE extensions are under development including high current power supply for magnets and 2-channel Pound Drever Hall (PDH) lock generator.
|
||||||
|
|
||||||
<a href="https://github.com/sinara-hw/stabilizer/wiki" target="_blank" rel="noopener noreferrer">More information</a>
|
<a href="https://github.com/sinara-hw/stabilizer/wiki" target="_blank" rel="noopener noreferrer">More information</a>
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 76 KiB |
|
@ -2183,7 +2183,7 @@ class Shop extends React.PureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// check for number of recommanded EEM connectors
|
// check for number of recommended EEM connectors
|
||||||
['novo', 'urukul', 'koster'].map(_type => {
|
['novo', 'urukul', 'koster'].map(_type => {
|
||||||
if (itemsCloned.find(elem => elem.type === _type)) {
|
if (itemsCloned.find(elem => elem.type === _type)) {
|
||||||
rules[this.state.items[_type].rules.connectors.type] = {...this.state.items[_type].rules.connectors};
|
rules[this.state.items[_type].rules.connectors.type] = {...this.state.items[_type].rules.connectors};
|
||||||
|
|
|
@ -867,6 +867,27 @@ const shop_data = {
|
||||||
nbrClockMax: 0,
|
nbrClockMax: 0,
|
||||||
slotOccupied: 1,
|
slotOccupied: 1,
|
||||||
clockOccupied: 0
|
clockOccupied: 0
|
||||||
|
},
|
||||||
|
'pounder': {
|
||||||
|
id: 'pounder',
|
||||||
|
name: 'PDH lock generator',
|
||||||
|
name_number: '4459',
|
||||||
|
name_codename: 'Stabilizer + Pounder',
|
||||||
|
price: 4460,
|
||||||
|
image: '/shop/graphic-03_Pounder.svg',
|
||||||
|
specs: [
|
||||||
|
'Stabilizer with Pounder daughter card.',
|
||||||
|
'2-channel Pound Drever Hall (PDH) lock generator.',
|
||||||
|
'AD9959 DDS (500MSPS, 10-bit).'
|
||||||
|
],
|
||||||
|
size: 'big',
|
||||||
|
type: null,
|
||||||
|
hp: 8,
|
||||||
|
nbrSlotMin: 0,
|
||||||
|
nbrSlotMax: 0,
|
||||||
|
nbrClockMax: 0,
|
||||||
|
slotOccupied: 1,
|
||||||
|
clockOccupied: 1,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -913,6 +934,7 @@ const shop_data = {
|
||||||
itemIds: [
|
itemIds: [
|
||||||
'koster',
|
'koster',
|
||||||
'stabilizer',
|
'stabilizer',
|
||||||
|
'pounder',
|
||||||
'thermostat-eem']}
|
'thermostat-eem']}
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue