X9000_customerpres_032910
EKS Profibus 在 Siemens S7-300 上读取 EKS 电子钥匙说明书
EKS Profibus on Siemens S7-300 – reading in EKS Electronic-KeysContentsComponents/modules used (2)EUCHNER (2)Others (2)Functional description (2)General (2)Example of an Electronic-Key structure (2)Setting the EKS Electronic-Key adapter (3)Profibus address (3)Write-protection setting (3)Configuration in the control system (4)Hardware (4)Programming in the control system (5)Global data blocks (5)STL program for retrieving the Electronic-Key content (6)Important note – please observe carefully! (10)Components/modules usedEUCHNERDescription Order no./item designationEKS Profibus 084800 / EKS-A-IDX-G01-ST09/03EKS Electronic-Key 077859 / EKS-A-K1RDWT32-EU084735 / EKS-A-K1BKWT32-EU091045 / EKS-A-K1BUWT32-EU094839 / EKS-A-K1GNWT32-EU094840 / EKS-A-K1YEWT32-EUTip: More information and downloads about the aforementioned EUCHNER products can be found at www.EUCHNER.de. Simply enter the order number in the search box.OthersDescription ItemS7-300, CPU 315F-2 PN/DP 6ES7315-2FJ14-0AB0Functional descriptionGeneralThe EKS is connected to a Siemens S7-300 PLC via the Profibus. All data corresponding to the data structure below should be read out.Example of an Electronic-Key structureThe data on the Electronic-Key are structured as follows:Byte no. Description Type Length Explanation103 – 104 KEYCRC CRC 2 bytes Checksum over a certain part of the Electronic-Key as copy protection.Refer to the EKM manual for details about the CRC.105 – 112Expiry date Date 8 bytes Electronic-Key expiry date.113 – 114 Authorization level Word 2 bytes Authorization level for access to the machine.115 Department Byte 1 byte Number describing a limited quantity of machines or installations.116 – 123 KeyID KeyID 8 bytes The KeyID is a number that is permanently pre-programmed on theElectronic-Key by EUCHNER. This number is different for each Electron-ic-Key. This number can be used to identify workers.The structure corresponds to application example AP000169-2…Setting the EKS Electronic-Key adapterProfibus addressThe device must be set to address 75. Address 75 is 1001011 in binary notation. DIP switches 1 to 7 are set accordingly (DIP switch 1 is the least significant bit).Figure 1Write-protection settingThe device is configured only for reading. Correspondingly, DIP switch 8 is set to ON.Figure 2Configuration in the control systemHardwareSimatic Manager version 5.5+SP1 is used for configuration. To perform parameter assignment for EKS on the Profibus, drag the object “EKS-A-IDX-G01-ST09/03” to the Profibus, followed by the “Read/Write: 32 Byte” module to the first slot. The address range can remain set at 256 to 287. The size of 32 bytes is selected because a total of 21 bytes of user data, including the KeyID, are to be retrieved. An adequately large input range must be reserved in the control system for this purpose.When a new Electronic-Key is inserted, the data are always read automatically from byte 0. As the user data are located at the end of the Electronic-Key instead of at the start in this example, the actual user data are loaded in a read routine in the sequential pro-gram. The KeyID is retrieved at the same time.Figure 3Set address 75 in the properties for the Profinet interface of the DP slave, matching the settings on the DIP switches. You set the subnet parameters according to your bus system.Figure 3Programming in the control systemGlobal data blocksData blocks are created for saving the transmitted and received data for the EKS.The data are created in a structured manner in data block DB1 for reading, with all data items longer than one byte being created as individual bytes to circumvent the even-numbered alignment in the control system. The data block must be the same length as the input range of the EKS, otherwise the system function for reading will not work.DB1, ReadBufferEKSFigure 4As a command has to be sent to the EKS so that the data from byte No. 103 and the KeyID can be read, the data required for this purpose are located at the start of data block DB2. The same data range of the EKS Electronic-Key is always read. The data block is suitably pre-filled during initialization. These are the bytes WriteCommand (64(dec.)), WriteStartAddress (103(dec.)) and WriteNumberBytes (21(dec.)). The data block must be the same length as the output range of the EKS, otherwise the system func-tion for writing will not work.DB2, WriteBufferEKSFigure 5DB10, instance module for FB1As the function module FB1 operates with static variables, a DB must be used as an instance module. In the example, DB10 is created for this purpose.STL program for retrieving the Electronic-Key contentThe reading program is programmed in FB1 in this example. The program reads only when an Electronic-Key is inserted and new data are ready. An Electronic-Key that has been read in once will not be read in again. The data from byte 103 (KeyCRC), including the KeyID, are read and are provided in data block DB1 from byte 4 for further processing. 21 bytes of user data in total are re-trieved from the EKS Electronic-Key.The status bytes of the EKS are saved in bytes 0 to 3 of DB1.Description of the interfaceInput dataNone.Output dataError message, new Electronic-Key and status of the DP slave.Input/output dataNone.Static dataThe counter value of the EKS is created statically. This value is compared with the value read by the EKS. Data are retrieved only if both values differ.Temporary dataNone.Changed registersA1, A2, SWUnchanged registersAR1, AR2, DBR1, DBR2System functions usedSFC14, DPRD_DAT – read standard DP slaves/PROFINET IO devicesSFC15, DPWR_DAT – write standard DP slaves/PROFINET IO devicesGlobal dataData blocks DB1 and DB2 with a minimum size of 32 bytes each are assumed.The content of data block DB1 is completely overwritten.The first three bytes (command byte, EKS address and length of the user data) are overwritten in data block DB2.Symbol tableFigure 8STL program in FB1- ReadEKS//Check of whether EKS is ready. If not: end of block.UN "EKSactive"; // EKS readyBEB ;NETWORKTITLE =Check whether Electronic-Key insertedUN "EKSIn"; // Check whether an Electronic-Key is insertedSPB RES;NETWORKTITLE =Electronic-Key inserted//Check whether Electronic-Key is new.L #KeyCount; // Already read if same value is contained in the key counter L "EKSInCount"; // Current counter value in EKS==I ; // Compare only if counter value in EKS is higherSPBN ZS; // Retrieve data only with new Electronic-KeyR #Error; // Feedback, no errorR #NewKey; // Feedback, no Electronic-KeyBE ;Figure 9aNETWORKTITLE =Start cycle sequence to read the Electronic-Key data//Start of the actual reading routine from a newly inserted Electronic-Key.//Cycle sequence.ZS: L #CycleMarker;SPL NEXT;SPA z1; // 1st cycle: set Read commandSPA z2; // 2nd cycle: reset Read commandSPA z3; // 3rd cycle: read dataNEXT: BEA ;NETWORKTITLE =1st cycle//Transfer of parameters to the EKS so that the range from byte 103,//including the KeyID, is sent.//The transmit-data range is already pre-allocated in DB2 by initialization and//does not have to be written again.//The command must be set in each case.z1: U "EKSJobactive"; //Wait until no job is activeUN "EKSJobDone"; //and job is doneBEB ;L 64; // Set Read command from Electronic-Key byte 103 with 21 bytesT "WriteBufferEKS".WriteCommand;L 103;T "WriteBufferEKS".WriteStartAddress;L 21;T "WriteBufferEKS".WriteNumberBytes;L 1;T #CycleMarker; // Prepare cycle marker for the next cycleCALL "DPWR_DAT" ( // Call of SFC 15 DPWR_DATLADDR := W#16#100, // Address of the EKS memory rangeRECORD:= P#DB2.DBX0.0 BYTE 32, // Start address of the DB, length must be 32RET_VAL := MW 1); // Feedback// Check whether an error occurredL MW 1; // Write feedback from ProfibusL 0; // Only return value 0 is OK==I ;SPBN MERR; // If a value <> 0 was returned: errorBEA ;Figure 9bNETWORKTITLE =2nd cycle//Reset of the Read commandz2: UN "EKSJobactive"; // Wait until job is active andU "EKSJobDone"; // job not ended, then reset of the Read commandBEB ;L 0; // Reset of the Read commandT "WriteBufferEKS".WriteCommand;L 2;T #CycleMarker; // Prepare cycle marker for next cycleCALL "DPWR_DAT" ( // Call of SFC 15 DPWR_DATLADDR := W#16#100, // Address of the EKS memory rangeRECORD := P#DB2.DBX0.0 BYTE 32,// Start address of the DB to be sent, length must be 32 RET_VAL := MW 1); // Feedback//Check whether error occurredL MW 1; // Write feedback from ProfibusL 0; // Only return value 0 is OK==I ;SPBN MERR; // If a value <> 0 was returned: errorBEA ;Figure 9cNETWORKTITLE =3rd cycle//Reading of the Electronic-Key data.//z3: U "EKSJobactive"; // Wait until no job is activeUN "EKSJobDone"; // and job is doneBEB ;CALL "DPRD_DAT" ( // Call of SFC 14 DPRD_DATLADDR := W#16#100, // Address of the EKS memory rangeRET_VAL := MW 1, // FeedbackRECORD := P#DB1.DBX0.0 BYTE 32);// Start address of the DB for reception, length must be 32 L 0;T #CycleMarker;//Check whether error occurredL MW 1; // Read feedback from ProfibusL 0; // Only return value 0 is OK==I ;SPBN MERR; // If a value <> 0 was returned: error//Electronic-Key read completely, the data are now in DB1L "EKSInCount"; // Read out current counter value from EKST #KeyCount; // Note that reading was complete with this counter valueS #NewKey; // Report back that a new Electronic-Key was read completelyR #Error; // No errorBEA ;Figure 9dNETWORKTITLE =Error processingMERR: L MW 1;T #DPStatus; // DP status as feedback in case of errorS #Error; // Return value = 1, error occurredR #NewKey; // Feedback, no Electronic-KeyL 0;T #CycleMarker; // Reset cycle sequenceBE ;NETWORKTITLE =ResetRES: R #Error; // No errorR #NewKey; // Feedback, no Electronic-KeyL 0;T #CycleMarker; // Reset cycle sequenceFigure 9eFB1 call//Retrieval of data from the EKS Electronic-KeyCALL "Read EKS" , "Data FB1"Error :=M0.0 // Return value for errorNewKey :=M0.1 // Return value, whether new Electronic-KeyDPStatus:=#Status // Status of the DP slaveU M 0.0 // Check whether error occurredSPB MERR // If values = 1, jump to error routineFigure 10Important note – please observe carefully!This document is intended for a design engineer who possesses the requisite knowledge in safety engineering and knows the ap-plicable standards, e.g. through training for qualification as a safety engineer. Only with the appropriate qualification is it possible to integrate the introduced example into a complete safety chain.The example represents only part of a complete safety chain and does not fulfill any safety function on its own. In order to fulfill a safety function, the energy switch-off function for the hazard location and the software within the safety evaluation must also be considered, for example.The introduced applications are only examples for solving certain safety tasks for protecting safety doors. The examples cannot be comprehensive due to the application-dependent and individual protection goals within a machine/installation.If questions concerning this example remain open, please contact us directly.In accordance with Machinery Directive 2006/42/EC, the design engineer of a machine or installation is obligated to perform a risk assessment and take measures to reduce the risk. When doing this, the engineer must comply with the applicable national and international standards. Standards generally represent the current state of the art. Therefore, the design engineer should continu-ously inform himself about changes in the standards and adapt his considerations to them. Relevant standards include EN ISO 13849 and EN 62061. This application must be regarded only as assistance for the considerations about safety measures.The design engineer of a machine/installation is obligated to assess the safety technology itself. The examples must not be used for assessment, because only a small excerpt of a complete safety function was considered in terms of safety engineering here. In order to be able to use the safety switch applications correctly on safety doors, it is indispensable to observe the standards EN ISO 13849-1, EN ISO 14119 and all relevant C-standards for the respective machine type. Under no circumstances does this doc-ument replace the engineer’s own risk assessment, and it cannot serve as the basis for a fault assessment.Particularly in case of fault exclusion, it must be noted that this can be performed only by the design engineer of a machine or installation and requires a reason. General fault exclusion is not possible. More information about fault exclusion can be found in EN ISO 13849-2.Changes to products or within assemblies from third-party suppliers used in this example can lead to the function no longer being ensured or the safety assessment having to be adapted. In any event, the information in the operating instructions on the part of EUCHNER, as well as on the part of third-party suppliers, must be used as the basis before this application is integrated into an overall safety function. If contradictions should arise between the operating instructions and this document, please contact us directly.Use of brand names and company namesAll brand names and company names stated are the property of the related manufacturer. They are used only for the clear identifi-cation of compatible peripheral devices and operating environments in relation to our products.EUCHNER GmbH + Co. KG · Kohlhammerstraße 16 · 70771 Leinfelden-EchterdingenTelephone:+497117597-0·Fax:+497117597-303·***************·www.euchner.de。
ULTRATONE K3000FX K1800FX K900FX K450FX 快速启动向导说明书
ULTRATONEK3000FX/K1800FX/K900FX/K450FXUltra-Flexible 300/180/90/45-Watt 4/3-Channel PA System / Keyboard Amplifier with FX and FBQ Feedback DetectionV 5.0带有此标志的终端设备具有强大的电流, 存在触电危险。
仅限使用带有 ¼'' TS 或扭锁式插头的高品质专业扬声器线。
所有的安装或调整均须由合格的专业人员进行。
此标志提醒您, 产品内存在未绝缘的危险电压, 有触电危险。
此标志提醒您查阅所附的重要的使用及维修说明。
请阅读有关手册。
小心为避免触电危险, 请勿打开机顶盖 (或背面挡板)。
设备内没有可供用户维修使用的部件。
请将维修事项交由合格的专业人员进行。
小心为避免着火或触电危险, 请勿将此设备置于雨淋或潮湿中。
此设备也不可受液体滴溅, 盛有液体的容器也不可置于其上, 如花瓶等。
小心维修说明仅是给合格的专业维修人员使用的。
为避免触电危险, 除了使用说明书提到的以外, 请勿进行任何其它维修。
所有维修均须由合格的专业人员进行。
1. 请阅读这些说明。
2. 请妥善保存这些说明。
3. 请注意所有的警示。
4. 请遵守所有的说明。
5. 请勿在靠近水的地方使用本产品。
6. 请用干布清洁本产品。
7.请勿堵塞通风口。
安装本产品时请遵照厂家的说明。
8. 请勿将本产品安装在热源附近,如 暖 气 片, 炉子或其它产生热量的设备 ( 包 括功放器)。
9. 请勿移除极性插头或接地插头的安全装置。
接地插头是由两个插塞接点及一个接地头构成。
若随货提供的插头不适合您的插座, 请找电工更换一个合适的插座。
10. 妥善保护电源线, 使其不被践踏或刺破, 尤其注意电源插头、多用途插座及设备连接处。
11. 请只使用厂家指定的附属设备和配 件。
12. 请只使用厂家指定的或随货销售的手推车, 架子, 三 角架, 支架和桌子。
PWR Rollups 用户指南说明书
PWR Rollups User GuideBy Orektic Solutions LLPContentsI Introduction2I.I Orektic (2)I.II Enzigma LLC (2)II Product Introduction3 III Product Features4 IV Product Versions5 V Configuration Guide7 V.I Installation Steps (7)V.II Pre-requisites (8)V.III Step by Step Walkthrough (9)V.III.1Update Settings (18)V.III.2Rollup Actions (20)V.III.2.1Show Versions: (20)V.III.2.2Edit: (20)V.III.2.3Recalculate: (21)VI Contact Us22I.I OrekticOrektic is known for state-of-the-art cloud-based,SAAS solutions that help our clients to transform the way they do business.We exist to solve the critical issues facing our clients,both large and small.Our unique approach is not only what differentiates us,but also what makes us successful.We provide a broad range of services and solutions to help organizations facilitate change,achieve their vision,and optimize performance and productivity.From implementing new business strategies to ultra-efficient work processes,Orektic is ready to tackle any challenge and put you on the path to success.With state-of-the-art cloud-based, SAAS solutions transform the way you do business.Orektic is one of the software companies from the Enzigma group.����I.II Enzigma LLCEnzigma LLC is the exclusive reseller of Orektic products.PWR Rollups is a user-friendly cloud-based application that provides advanced and powerful features that allow not only technical but also non-technical users to achieve single as well as multiple roll-up operations from a single place.It’s configured so that users can easily perform operations on existing records or newly created records.As they say“Modern Problem requires Modern Solution”,our cloud-based application-PWR Rollups solve all the earlier business problems.This is done using a no-code approach.(Click-Click and Done).With a user-friendly and easy-to-use design that allows admins and other non-technical people to meet their needs easily and maximize the efficiency and profitability of the business.Build complex business scenarios with ease and within a few clicks.Whoosh!!No development teamhence no-Code.1.PWR Rollups is a cloud-based and user friendly application2.Rollup up to5levels of the object hierarchy3.Supports Rollup on both Master-Details and Lookup Relationship4.Inbuilt tool to recalculate rollup result on the existing records in few clicks5.Auto calculation of the rollup result on both new and old parent objects upon reparenting6.Retry mechanism if any of the rollup operations fails7.Create multiple rollup operations from the single place8.Attractive UI through which user(Development team+Business team)can easily create therollups actions(COUNT,COUNT DISTINCT,SUM,MAX,MIN,AVG)9.With the help of this UI,users can easily create multiple rollup actions at a time under asingle rollup.As a result,it saves tons of time and moneyers can update a large number of records asynchronously by adding custom-definedcriteria and filters11.Create fields directly from PWR Rollups UI.Avoiding the lengthy process of field creationfrom the object manager12.Easily activate and deactivate the rollup actionsVersion Release Date DescriptionPWR Rollups2.7/2.7.007/17/2023Improvements:•Implementation of the Save and Run fea-ture•Implementation of Lookup Fields in the source object field with a5-level lookup hierarchy•Ability to create and run rollups on man-aged package objects•Ability to let user to unselect/set blank fields in any picklist fieldBug Fixes:•Fixed visibility of polymorphic fields while editing the rollup.•Fixed issue of the first field of any popup needs to be in focus on load.•Fixed the issue of redirection to the ver-sion page after editing and saving any roll-up.•Fixed the issue of updating the list of destination object fields after creating any new field from the same rollup UI.•Fixed the required error that continues to appear even after adding a label to the field during the creation on Rollup UI.•Fixed the issue of Queue message dele-tion related to process settings of rollup that is updated even after the’Types of Status’field is blank.•Fixed the issue of being unable to se-lect any field from the drop-down after adding filters that have pre-populated fields while creating or editing any roll-up.PWR Rollups2.6/2.6.005/29/2023•Implementation of Count distinct feature •Added all supported data types •Fixed package expiry issuePWR Rollups2.5/2.5.003/23/2023•Improvements in getAllObject APIPWR Rollups2.4/2.4.003/20/2023•Bug fix for visibility of list of fields in the filter criteria section•Updated the error message for remote site settings•Updated the PWR Rollups icon image in the applicationPWR Rollups2.3/2.3.001/31/2023•Bug fix for automatically activating the latest rollup version•Added Source and Destination fields on PWR Rollups UIPWR Rollups2.2/2.2.011/17/2022•Manage package Objects working in Rollups•One relationship field for multiple objects functionality is not working•Related to the object is changing to de-faultPWR Rollups2.1/2.1.010/21/2022•Order object dependency removed while installation of PWR Rollups•Fixed minor bugsPWR Rollups1.2/1.2.109/15/2021•Minor bug fixesPWR Rollups1.2/1.2.008/03/2021•Users can create rollups directly on the productionPWR Rollups1.1/1.1.001/12/2021•First releaseV.I Installation StepsTo install PWR Rollups managed package do follow the mentioned steps here:1.Navigate to AppExchange and search for PWR Rollups or click here2.Click on the’Get It Now’button3.The link will direct you to the PWR Commons application page,it is a prerequisite packagefor PWR Rollups4.Click on Get it now from the apps information page5.Enter the credentials for the org in which you want to install and log in6.Choose to install the package in either the production org or Sandbox by clicking”Install inProduction”or”Install in Sandbox”7.Tick the checkbox indicating your agreement with the terms and conditions,then proceedby clicking on the”Confirm and Install”button8.Select the desired installation option(Install for All Users,Install for Admins Only,or Installfor Specific Profiles),and click”Install”9.Click”Done”once the installation is complete10.It may take some time to complete the installation package.You will be notified throughEmail once the installation is completed11.Now open the PWR Commons application from the application manager12.Click”Install Now”in front of the PWR Rollups application in the list of products13.Enter the credentials of the logged-in organization and log in14.Select the desired installation option,and click”Install”15.Click on Done once the installation is completed16.It may take some time to complete the installation package.You will receive an email notifi-cation when the installation is finished**For reference and more details about package installation,please click hereAny potential customer with a package link for PWR Rollups from the support or sales team, then to install PWR Rollups managed package do follow the mentioned steps here:1.Open the installation URL received from our sales or support team in the browser2.Enter your credentials for the Salesforce organization in which you want to install the pack-age and then click on Log In3.Repeat the steps mentioned above from step5V.II Pre-requisitesAs a prerequisite,the Salesforce admin needs to make sure that the Salesforce org is alreadyset up with their domain name.In case your org is not set up with the Domain Name then the contents of the Package will not be available for use.To enable the domain name open Setup from the Quick Find box,find“My Do-main”and Set up a Domain Name for your org.For more details and information,please click hereV.III Step by Step WalkthroughAfter installing the PWR Rollups application from the AppExchange user needs to log in to thesame organization where the user has installed the PWR Rollups package.Figure1:Installation of the package in SalesforceFigure2:Installation of the package in SalesforceTo create a roll-up action click on the New button:Figure3:Creation of RollupEnter the Action Name and Description to identify the purpose of this rollup.Then select theSource Object by clicking on the‘Select Source Object’watermark.Figure4:Select Source Objectdestination object and on which you want to show the rollup resultFigure5:Creation of RollupFigure6:Select Destination ObjectAfter selecting the object,click on the Next button.Figure7:Creation of RollupHere users can select the Rollup Type as Count,Count Distinct,Maximum,Minimum,Sum,and AverageFigure8:Select Rollup TypeLet’s select Count and Select Opportunity Count field from Account Fields.Here you need to make sure you have created the Opportunity Count Field on the Account Object.Now,what if the user forgets to create the Account Field earlier?Does the user need to navigate back to the Account Object and create a new field and repeat the roll-up fieldwork from start?So the answer is NO!We have a solution for ers can create the new field from the same select destination dropdown by simply clicking on Create New Field.Once the field is created successfully,you need to manually set the field on Page Layouts andField Level Security.Figure9:Select source and destination fieldHere we are not restricting the user to create only a single roll-up action at a ing this appthe user can create multiple roll-up actions under the same page just by clicking the”+”icon.Figure10:Creation of RollupFigure11:Creation of Rollupconsidering the Roll-ups.If the user adds multiple filters then we can apply logical conditions to it.Figure13:Select Evaluation criteriaHere the user can decide whether to activate the roll-up on Save using the toggle,else the usercan activate it from the landing page.Figure14:Activate RollupFinally,the user needs to click on the Save button to save all the operations performed so far and create the action record.The user has the option to click on the”Save&Run”button toinstantly save and execute the rollup process for existing data.Figure15:Save RollupLanding PageFigure16:Landing pageV.III.1Update Settings1.Process Setup:Here an admin can decide when to stop batch execution for an empty pro-cess count,also an admin can decide how many batches he/she wants to execute simulta-neously for rollup.Figure17:Process SetupFigure18:Process SetupAlso,the user can decide the batch processing count and based on that system will decidethe number of batches(Processes)we have to execute.There are a total of10batch set-tings where the user can set up different process/batch limits2.Queue Messages Deletion:Queue message deletion in rollups refers to the process ofremoving messages from a queue after they have been successfully processed or rolled up.When using rollup functionality in Salesforce,messages are often aggregated or com-bined to generate summarized information or perform calculations.Figure19:Queue Messages DeletionIn PWR Rollups,we have the ability to specify the number of days in the past for which wewish to delete the queue messages.Additionally,we can delete queue messages basedon their type by applying filters for Succeeded,Failed,and Pending messages.V.III.2Rollup ActionsV.III.2.1Show Versions:After every edit operation on rollup,it creates a new version of it,soeven if you need the previous Rollup you can access it from there.Figure20:Show VersionsV.III.2.2Edit:If the user wants to edit the existing action click on Edit.But a user can editonly the Label,and Description on the first page and add,and remove roll-up types,and customfilters on the next page.But the user cannot edit the previously defined object path.Figure21:Edit FunctionalityV.III.2.3Recalculate:Recalculate functionality is used when the user wants to perform a rollup operation on legacy data.After recalculating,the user can see rollup result data populated on all existing records.If the user needs to calculate the newly created action on the existing records then select the Recalculate option and can apply the custom filter to identify which records the user wants to consider for the recalculation operation.Note:It may take time to recalculate existing records.So the user doesn’t need to stay on the same page,once the recalculation procedure is completed the application sends an email to theuser who initiated the Recalculate process.Figure22:Recalculate FunctionalityFor more information visit You can also schedule a product demo to know more about PWR Rollups simply by filling out the form hereIf you have any concerns or queries then please contact us at*******************。
Enhanced Help for R Users说明书
Package‘ehelp’January7,2023Title Enhanced Help to Enable``Docstring''-Comments in Users FunctionsVersion1.2.1Author Marcelo Ponce[aut,cre]Maintainer Marcelo Ponce<*******************>Description By overloading the R help()function,this package allows users to use``doc-string''style comments within their own defined functions.The package also provides addi-tional functions to mimic the R basic example()function and the prototyping of packages.URL https:///mponce0/eHelpBugReports https:///mponce0/eHelp/issuesLicense GPL(>=2)Encoding UTF-8RoxygenNote7.1.0Suggests testthat(>=2.1.0),knitr,rmarkdown,crayonVignetteBuilder knitrNeedsCompilation noRepository CRANDate/Publication2023-01-0623:30:09UTCR topics documented:eexample (2)help (2)simulatePackage (3)Index412helpeexample function that allows to execute the examples from user defined func-tionsDescriptionfunction that allows to execute the examples from user defined functionsUsageeexample(...,skip.donts=FALSE)Arguments...function name of a user defined fnskip.donts boolean argument to specify whether dontest or dontrun examples should be skiped or nothelp Wrapper Help FunctionDescriptionThis function is a wrapper around the R’s system help()function.It allows the user to include docstring styles documentation and displayed it as help or information to the users using the help() command.Usagehelp(topic,package=NULL,lib.loc=NULL,verbose=getOption("verbose"),try.all.packages=getOption("help.try.all.packages"),help_type=getOption("help_type"))Argumentstopic topic/or/function name to search forpackage package where to searchlib.loc location of R librariesverbose for diplaying thefilenametry.all.packagesattempt to go trough all installed packageshelp_type format of the displayed help(text,html,or pdf)simulatePackage3DetailsParameters are the same as in utils::help,see help(help,package=’utils’)for further details.Examplescompute3Dveloc<-function(x,y,z,t){# @fnName compute3Dveloc# this function computes the velocity of an object in a3D space# @param x vector of positions in the x-axis# @param y vector of positions in the y-axis# @param z vector of positions in the z-axis# @param t time vector corresponding to the position vector#number of elements in vectorsn<-length(t)#compute delta_tdelta_t<-t[2:n]-t[1:n-1]#compute delta_xdelta_x<-x[2:n]-x[1:n-1]#compute delta_ydelta_y<-y[2:n]-y[1:n-1]#compute delta_zdelta_z<-z[2:n]-z[1:n-1]#do actual computation of velocity...veloc3D<-list(delta_x/delta_t,delta_y/delta_t,delta_z/delta_t)#return valuereturn(veloc3D)}help(compute3Dveloc)simulatePackage function that allows to load the functions from a package in prepara-tion for CRAN,as if it is being loaded by loading all the fns defined inthe R sub-directory of the package,ie."myPckg/R"Descriptionfunction that allows to load the functions from a package in preparation for CRAN,as if it is being loaded by loading all the fns defined in the R sub-directory of the package,ie."myPckg/R"UsagesimulatePackage(pkgLocation=NULL)ArgumentspkgLocation path to the base loaction of the package,under which is expected to found the R sub-directoryIndexeexample,2help,2simulatePackage,34。
cisco 思科 Catalyst 9800无线控制器常见无线客户端连接问题故障排除
Catalyst 9800无线控制器常见无线客户端连接问题故障排除目录简介先决条件要求使用的组件收集日志客户端无法连接时的场景Web身份验证凭据无效策略配置文件中未定义有效的VLAN错误密码9800 WLC上不存在RADIUS发送的访问控制列表(ACL)RADIUS发送的VLAN在9800 WLC上不存在由于WLAN或策略配置文件中的更改而断开连接从网络中手动删除客户端由于EAP超时而断开连接由于AP无线电重置,已断开连接由于Web身份验证超时而断开连接由于会话超时,已断开连接由于空闲超时而断开连接客户端在SSID之间移动简介本文档介绍最常见的无线客户端连接问题场景以及如何在Catalyst 9800无线控制器上解决这些问题。
先决条件要求Cisco 建议您了解以下主题:Cisco Catalyst 9800 系列无线控制器q无线控制器的命令行界面(CLI)访问q使用的组件本文档中的信息基于Cisco IOS® XE Gibraltar 16.10或更高版本的软件和硬件版本。
本文档中的信息都是基于特定实验室环境中的设备编写的。
本文档中使用的所有设备最初均采用原始(默认)配置。
如果您的网络处于活动状态,请确保您了解所有命令的潜在影响。
收集日志WLC 9800 提供无间断跟踪功能。
这可确保持续记录所有客户端连接相关的错误、警告和通知级别消息,并且您可以在发生事故或故障情况后查看其日志。
注:根据生成的日志量,您可以返回几小时到几天。
要查看9800 WLC默认收集的跟踪,可以通过SSH/Telnet连接到9800 WLC并遵循以下步骤(确保会话记录到文本文件)。
步骤1:检查控制器当前时间,以便您可以在问题发生之前的时间跟踪日志。
# show clock第二步:根据系统配置的指示,从控制器缓冲区或外部系统日志收集系统日志。
这样可以快速查看系统的运行状况和错误(如果有)。
# show logging第三步:验证是否启用了任何调试条件。
HP 9000 rp4440 安装指南
HP 9000 rp4440安装指南规格型号:RSVLA-0201生产部件号:A7124-96001-zh_cn2003 年 12 月© 版权所有 2003-2004 Hewlett-Packard Development Company, L.P.法律声明本文档中的信息如有更改,恕不另行通知。
Hewlett-Packard 对本手册不作任何担保,包括但不限于适销性及特定用途适用性的隐含担保。
Hewlett-Packard 对本手册中包含的错误以及与其结构、性能或使用有关的直接、间接、特殊、偶发或继发性损失不负任何责任。
有限权利注释。
美国政府使用、复制或披露本文,国防部应遵守 DFARS 252.227-7013 中“技术数据和计算机软件权利”条款的 (c) (1) (ii) 小节的规定;其他部门则应遵守 FAR 52.227-19 中“商业计算机软件有限权利”条款的 (c) (1)和 (c) (2) 小节的规定。
HEWLETT-PACKARD COMPANY 3000 Hanover Street Palo Alto, California 94304 U.S.A.版权声明。
© 版权所有 2003-2004 Hewlett-Packard Development Company, L.P.Acrobat® Reader® 是 Adobe Systems Incorporated 在美国和(或)其他国家(地区)的商标。
Torx® 是 CamCar/Textron, Inc. 的注册商标。
UNIX 是在美国和其他国家(地区)通过 X/Open Company Limited 独家许可的注册商标。
WRQ Reflection® 是 WRQ, Inc. 的注册商标。
除非版权法允许,否则未经书面许可,严禁复制、改编或翻译。
相关文档。
“HP Server Documentation”CD-ROM已随服务器提供。
890 QuickStart 手册 890CA(公共总线)适配器 HA4469250U000 问题
890 QuickStart Manual890CA (Common Bus) Adaptor HA4469250U000 Issue 5The full Product Manual is available on line at /ssdENGINEERING YOUR SUCCESS.890QuickstartManual890CA (Common Bus) AdaptorHA469250U000 Issue 5 (ISO A5)HA469250U001 Issue 5 (American Quarto)Copyright 2016 Parker Hannifin Manufacturing Ltd.All rights strictly reserved. No part of this document may be stored in a retrieval system, or transmitted in anyform or by any means to persons not employed by a Parker Hannifin Manufacturing Ltd., without written permission from Parker Hannifin Manufacturing Ltd. Although every effort has been taken to ensure theaccuracy of this document it may be necessary, without notice, to make amendments or correct omissions.Parker Hannifin Manufacturing Ltd., cannot accept responsibility for damage, injury, or expenses resulting therefrom.Page 2C o n t e n t sPage Safety (4)Hazards to Personnel 4 Application Risk 4∙Risk Assessment 5∙Accessibility 5∙Protective Insulation 5∙RCDs 5 Introduction (6)About this QuickStart 6∙SSD_Rail Busbar System 6 Installation (7)Dimensions 7∙Ventilation 8∙Environmental Conditions 8 Overview (9)890CA Power Connections (10)SSD_Rail Connections (11)∙Busbar Installation 11 Application Examples (12)∙Example 1: Enclosure/Row Changer (890CA////00) 12∙Example 2: Power Loss Ride-Through (890CA////RT) 13∙Example 3: Connection to Non-busbar Drives 14 Drive Start-up (15)Before Applying Power : 15 Fuse Replacement (15)∙Common Bus Adaptor : 890CA////00 15∙Common Bus Adaptor with Ride-Through : 890CA////RT 16 Appendix A: Product Code (17)Understanding the Model Number 17∙Manufacturing Product Code 17∙US Model Number & Legacy Product Code 18 Appendix B: Electrical Ratings (20)Appendix C: Reference Information (21)Appendix D: Compliance (23)Planning Cable Runs 24Page 3Page 4Hazards to Personnel WARNINGThis equipment can endanger life through rotating machinery and high voltages. Failureto observe the following will constitute an ELECTRICAL SHOCK HAZARD.Metal parts may reach a temperature of 70 degrees Centrigrade in operation.Before working on the equipment, ensure isolation of the mains supply from terminals L1, L2 and L3. The equipment contains high value capacitors which discharge slowly after removal of the mains supply. Wait for at least 3 minutes for the dc link terminals (DC+ and DC-) to discharge to safe voltage levels (<50V). Measure the DC+ and DC- terminalvoltage with a meter to confirm that the voltage is less than 50V.Application RiskThe specifications, processes and circuitry described herein are for guidance only and may need to be adapted to the user's specific application.Parker Hannifin Manufacturing does not guarantee the suitability of the equipment described in the Manual for individual applications.Risk AssessmentUnder fault conditions, power loss or other operating conditions not intended, the equipment may not operate as specified. In particular:∙The motor speed may not be controlled∙The direction of rotation of the motor may not be controlled∙The motor may be energisedAccessibilityAll live power terminals are IP20 rated only, since the equipment is intended to be installed within a normally-closed cubicle or enclosure, which itself requires a tool to open.Protective Insulation∙All control and signal terminals are SELV, i.e. protected by double insulation.Ensure all wiring is rated for the highest system voltage.NOTE Thermal sensors contained within the motor must be single/basic insulated.∙All exposed metalwork in the Drive is protected by basic insulation and bonding toa safety earth.RCDsNot recommended for use with this product. Where their use is mandatory, use only Type B RCDs (EN61009).CautionThis is a product of the restricted sales distribution class according to IEC 61800-3. It is designated as “professional equipment” as defined in EN61000-3-2. Permission of the supply authority shall be obtained before connection to the low voltage supply.Page 5Page 6SSD_Rail busbar system.Each Adaptor provides a busbar and a terminal connection for DC+ and DC-. This allows flexible wiring between rows of busbar-connected units.Two versions are available:1. Enclosure/Row Changer (890CA////00).2. Power Loss Ride-Through Adaptor (890CA////RT) - contains additional bus capacitance tohelp a system ride-through a mains power loss, without having an under-voltage trip. Can also be used as an enclosure/row changer.About this QuickStartThis QuickStart will:∙Familiarise you with the terminals and operation of the unit.∙Provide installation details and a quick set-up procedure.Provided with every 890 unit is a :Quickstart890 Installation Kit and instruction leafletThis QuickStart assumes that:∙You are a qualified technician with experience of installing this type of equipment.∙You are familiar with the relevant standards and Local Electric Codes (which take precedence).∙You have read and understood the Safety information provided at the front of this QuickStart.∙You realise that this guide contains only basic information and that you may need to refer to the Engineering Reference Guide supplied with the 890 Drive to complete your installation. SSD_Rail Busbar SystemSince the height and depth of everymodule is the same, it is very convenientto assemble drives of varying frame sizesinto one common bus system. Typicallythey are installed side-by-side.SSD_Rail is an innovative busbar systemthat connects the DC+ and DC- terminalsof all drives on a common bus without theuse of wire.Page 7be used. The 890CA is dimensionally the same as the Frame B 890CD unit.DimensionsDimensions are in millimeters (X : Power Bracket - 890 Installation Kit )The units must be installed in an enclosure. Mount the drive using the keyholes and slots or on a 35mm DIN rail using the 890 Installation Kit supplied.VentilationThe 890CA and 890CD drives can be mounted side-by-side with no Array clearance necessary.A minimum of 150mm (6 inches) free-air space must be allowed at thetop and bottom of each drive.If mounting drives above or below other equipment, the top andbottom distances should be added for overall clearance betweendrives.If connecting to a larger 690+ or 890 Frame E to K drive, alsomaintain the air clearance required by the larger drive.Refer to the relevant Product Manual supplied with that drive. Environmental ConditionsOperating ambient temperature 0°C to 45°C (32°F to 113°F)Enclosure rating IP20 – UL(cUL) Open typeAtmosphere Dust free, non flammable, non-corrosive, <85% humidity,non-condensingPage 8OverviewIMPORTANT:If only one LED is lit, an internal fuse has blown. Refer to page 15.Page 9WARNINGyou are working.CautionAll 890 units connected to the DC bus must be rated for the same 3∅ operatingvoltage.The following items are available from SSD Drives:● Busbar : Part No. BH465850 - 1m length, 10mm x 3mm copper● Busbar Insulator : Part No. BC465938U200 - 200mm lengthThe bus bar is rated at 140 Amps.Busbar Installation1. Simply select two correct lengths of the busbars and drop them in the slots shown in the close-uptop view. Secure with two screws (2.0 Nm), shown by the arrows. Fit insulating sleeve to any busbar that protrudes from the units.2. For your safety and EMC compliance:♦Busbar: cut this to length so that both ends of the bar are fully inserted into a terminal –the busbar must not protrude beyond the edge of the terminal clamp if the busbar is a terminating piece.♦Insulator: Fit this to all busbar external of the unit. It should butt-up to the sides of each unit.Press it firmly down onto the busbar for complete protection.3. Close all Busbar Terminal Covers. They snap shut.installing a common busbar system.It is important to note that the Busbar is rated at 140A,so when connecting to the 890CS Frame D, which iscapable of more than 140A, use both SSD_Railconnections separately.Example 1: Enclosure/Row Changer (890CA////00)The total loading on an 890CA unit (890CA////00) must not exceed 80A DC.Connecting several rows of 890CD units operating from a single 890CS, or connecting parts of a common bus system in different enclosure.Example 1Diagram showing connection options between the 890CS unit and the 890CAunit using SSD_Rail Busbars and/or DC+ and DC- terminals.Example 2: Power Loss Ride-Through (890CA////RT)The total loading on an 890CA unit (890CA////RT) must not exceed 50A DC.A maximum of four 890CA////RT units may be used in a system. 890CA////RT units can also be used as "row-changers".The capacitors in the 890CA (890CA////RT) provide additional bus capacitance. This will increase the time before experiencing an under-voltage trip in the event of a mains power loss.To ensure an acceptable life-time for the capacitors in the unit, we recommend that the total loading on an 890CA (890CA////RT) does not exceed 50A DC.Example 2Diagram showing 890CA units with Ride-Through connected betweenthe 890CS and 890CD units.Example 3: Connection to Non-busbar DrivesThe total loading on an 890CA unit (890CA////00) must not exceed 80A DC.The total loading on an 890CA unit (890CA////RT) must not exceed 50A DC.Connecting 890CD units to an alternative DC source. For example, a 690+ drive that may be acting as a regenerative front-end.Example 3Diagram showing connection between the DC+ and DC- terminals of analternative DC source and an 890CA unit.* Note that the air clearance for the drive must be maintained.Refer to the relevant product manual for details.Before Applying Power :∙Read the Safety section at the front of the QuickStart.∙Ensure that all local electric codes are met.∙Check for damage to equipment.∙Check for loose ends, clippings, filings, drilling swarf etc. lodged in the drive and system.∙Check all external wiring circuits of the system - power, control, motor and earth connections.∙Ensure that the fan in the 890CA unit is functioning.∙Ensure that the SSD_Rail has been correctly installed and securely fastened.WARNINGaccidentally whilst you are working.The 890CA is internally fused with two 100 Amp fast-blow fuses, FS1 andFS2: Parker Part Number CS465994U100. If one LED is not lit, then a fusehas blown.Common Bus Adaptor : 890CA////00The fuses can be replaced with the unit in situ.1. Remove the two screws securing the unit's front panel. Remove the panel to reveal the fuses.2. Replace the fuses. Be careful not to drop fuse fastenings inside the unit.3. Replace the front panel and secure with the screws.Common Bus Adaptor with Ride-Through : 890CA////RTThe unit must be dismantled to gain access to the fuses.1. Dismantle the unit from the system to work with it on a bench.2. Open the top cover of the SSD_Rail connection box by inserting a large flat blade screw driverinto the slot at the front and prising open.3. Remove the two large screws (A - Posidrive No. 2).4. Undo the four screws (B - Torx T10) securing the connection box and remove the connection box.5. Locate the four black plastic rivets (C - two on the top, two on the bottom of the unit). These are atwo part fastener comprising a central rivet and a collet. With a small flat blade screw driver prise out the rivet and remove the collet from the hole.6. Remove the four screws (Torx T20) from the right hand side of the drive when viewed from thefront.7. Remove the side of the drive.8. Replace the fuses. Be careful not to drop fuse fastenings inside the unit.9. Fit the side on the drive.10. Fit the side on the drive and secure with the fourscrews (Torx T20).11. Fit the four black plastic fasteners (C). Ensurethe holes in the mouldings are lined up for aneasier fit.12. Fit the SSD-Rail connection box and secure withthe four screws (B).13. Fit the large screws in the back of theconnection box (A). It is important that thesescrews are tightened to 3Nm.Understanding the Model Number Manufacturing Product CodeThe unit is fully identified using an alphanumeric code which records how the Drive was calibrated, its various settings when despatched from the factory, and the country of origin.The Product Code appears as the “Model No”. Each block of the Product Code is identified as belo w.US Model Number & Legacy Product CodeEach unit is identified using an alphanumeric code which records how the unit was configured when dispatched from the factory. Each block of the Model Number is identified as below using a 7 block short code (shaded) and a 9 block long code. The short code defines the "base build" product and the long code defines the configuration including options.Example Model Number: Block 1 890CA This is an 890CA Common Bus Adaptor Block 2 5 Nominal input voltage rating is 500VacBlock 3 0080B Current rating (continuous output RMS Amps) : 80 Amps DC Physical frame size BBlock 4 N Braking Control : No Braking Control Block 5 00 Build Option : Not applicable Block 6 N Performance Level : Not applicable Block 7 US English documentationBlock 8 00 Parker Hannifin Manufacturing standard livery Block 900Special options : none fittedSHORT CODEAppendix B: Electrical RatingsPage 20Page 21Appendix C: Reference InformationPage 22A comprehensive guide to product compliance is available in the full product manual.Warning Where there is a conflict between EMC and safety requirements personnel safety shall always take precedence.Operation of this equipment requires detailed installation and operation instructions provided in the installation/operation manual intended for use on this product. It should be retained with this device at all times.Caution: This is a product of the restricted sales distribution class according to IEC 61800-3. It is designated as “professional equipment” as defined in EN61000-3. Permission of the supply authority shall be obtained before connection to the low voltage supply.In a domestic environment this product may cause radio interference in which case supplementary mitigation measures may be required.This equipment contains electrostatic discharge (ESD) sensitive parts. Observe static control precautions when handling, installing and servicing this product.Conducted Emissions comply with EN61800-3 category C1, C2 and C3 when installed in accordance with instructions in Chapter 4 / 5 refer to “mounting the unit”.Page 23Planning Cable Runs♦Use the shortest possible motor cable lengths.♦Use a single length of cable to a star junction point to feed multiple motors.♦Keep electrically noisy and sensitive cables apart. If this is not possible parallel cable runs should be separated by at least 0.25 meters, for runs longer than 10 meters, separation should beincreased proportionally.♦Sensitive cables should cross noisy cables at 90°.♦Never run sensitive cables close or parallel to the motor, dc link and braking chopper circuit for any distance.♦Never run supply, dc link or motor cables in the same bundle as the signal/control and feedback cables, even if they are screened.♦Ensure EMC filter input and output cables are separately routed and do not couple across the filter.Page 24Parker Hannifin Manufacturing Limited, Automation Group, Electromechanical Drives Business Unit New Courtwick Lane, Littlehampton, West Sussex BN17 7RZ United Kingdom Tel: +44(0)1903 737000Fax: +44(0)1903 737100www.parker .com/ssd *HA469250U000_05*AE – UAE, Dubai Tel: +971 4 8127100 ********************AR – Argentina, Buenos Aires Tel: +54 3327 44 4129AT – Austria, Wiener Neustadt Tel: +43 (0)2622 23501-0 *************************AT – Eastern Europe, Wiener Neustadt Tel: +43 (0)2622 23501 900 ****************************AU – Australia, Castle Hill Tel: +61 (0)2-9634 7777AZ – Azerbaijan, Baku Tel: +994 50 2233 458 ****************************BE/LU – Belgium, Nivelles Tel: +32 (0)67 280 900 *************************BR – Brazil, Cachoeirinha RS Tel: +55 51 3470 9144BY – Belarus, Minsk Tel: +375 17 209 9399 *************************CA – Canada, Milton, Ontario Tel: +1 905 693 3000CH – Switzerland, Etoy Tel: +41 (0)21 821 87 00 *****************************CL – Chile, Santiago Tel: +56 2 623 1216CN – China, Shanghai Tel: +86 21 2899 5000CZ – Czech Republic, Klecany Tel: +420 284 083 111 *******************************DE – Germany, Kaarst Tel: +49 (0)2131 4016 0 *************************DK – Denmark, Ballerup Tel: +45 43 56 04 00 *************************ES – Spain, Madrid Tel: +34 902 330 001 ***********************FI – Finland, Vantaa Tel: +358 (0)20 753 2500 *************************FR – France, Contamine s/Arve Tel: +33 (0)4 50 25 80 25 ************************GR – Greece, Athens Tel: +30 210 933 6450 ************************HK – Hong Kong Tel: +852 2428 8008HU – Hungary, Budapest Tel: +36 1 220 4155 *************************IE – Ireland, Dublin Tel: +353 (0)1 466 6370 *************************IN – India, Mumbai Tel: +91 22 6513 7081-85IT – Italy, Corsico (MI) Tel: +39 02 45 19 21 ***********************JP – Japan, Tokyo Tel: +81 (0)3 6408 3901KR – South Korea, Seoul Tel: +82 2 559 0400KZ – Kazakhstan, Almaty Tel: +7 7272 505 800 ****************************MX – Mexico, Apodaca Tel: +52 81 8156 6000MY – Malaysia, Shah Alam Tel: +60 3 7849 0800NL – The Netherlands, Oldenzaal Tel: +31 (0)541 585 000 ********************NO – Norway, Asker Tel: +47 66 75 34 00 ************************NZ – New Zealand, Mt Wellington Tel: +64 9 574 1744PL – Poland, Warsaw Tel: +48 (0)22 573 24 00 ************************PT – Portugal, Leca da Palmeira Tel: +351 22 999 7360 **************************RO – Romania, Bucharest Tel: +40 21 252 1382 *************************RU – Russia, Moscow Tel: +7 495 645-2156 ************************SE – Sweden, Spånga Tel: +46 (0)8 59 79 50 00 ************************SG – Singapore Tel: +65 6887 6300SK – Slovakia, Banská Bystrica Tel: +421 484 162 252 **************************SL – Slovenia, Novo Mesto Tel: +386 7 337 6650 **************************TH – Thailand, Bangkok Tel: +662 717 8140TR – Turkey, Istanbul Tel: +90 216 4997081 ************************TW – Taiwan, Taipei Tel: +886 2 2298 8987UA – Ukraine, Kiev Tel +380 44 494 2731 *************************UK – United Kingdom, Warwick Tel: +44 (0)1926 317 878 ********************US – USA, Cleveland Tel: +1 216 896 3000VE – Venezuela, Caracas Tel: +58 212 238 5422ZA – South Africa, Kempton Park Tel: +27 (0)11 961 0700 *****************************© 2016 Parker Hannifin Corporation. All rights reserved.European Product Information CentreFree phone: 00 800 27 27 5374(from AT, BE, CH, CZ, DE, EE, ES, FI, FR, IE,IL, IS, IT, LU, MT, NL, NO, PT, SE, SK, UK)Parker Worldwide。
Cisco ASR 9000系列可模块化的线路卡数据册说明书
Data SheetCisco ASR 9000 Series Modular Line CardsProduct OverviewThe Cisco® ASR 9000 Series modular line cards provide customers with a flexible solution supporting multiple combinations of Ethernet ports, all in a single slot of the Cisco ASR 9000 Series Aggregation Services Routers. Modular line cards support a wide range of interfaces and densities offering the benefits of network scalability with lower initial costs and ease of upgrades. The Cisco ASR 9000 modular line cards and modular port adapter portfolio continues the Cisco focus on investment protection along with consistent feature support, broad interface availability, and the latest technology.Using the modular line cards, the Cisco ASR 9000 Series can support customer applications including video-on-demand, Internet Protocol Television (IPTV), point-to-point video, Internet video, and cloud-based computing. These line cards can also be used to deliver economical, scalable, highly available, line-rate Ethernet andIP/Multiprotocol Label Switching (IP/MPLS) edge services. The Cisco ASR 9000 Series line cards and routers are designed to provide the fundamental infrastructure for scalable Carrier Ethernet and IP/MPLS networks, supporting profitable business, residential, and mobile services (Figure 1).Figure 1. Cisco ASR 9000 Series Modular Line CardsFeatures and BenefitsThe Cisco ASR 9000 Series modular line cards are fully compatible with the Cisco ASR 9922, 9010, and 9006 systems, route switch processors (RSPs), and line cards. No hardware upgrade to the chassis or cooling system is required. Total bandwidth is dependent on the number and type of RSPs installed.The new line cards deliver the ability to mix and match modular port adapters so that customers can customize each slot in the Cisco ASR 9000 to their specific port demands. As an example, a 4-port 10-Gigabit Ethernet modular port adapter can be matched with a 20-port 1-Gigabit Ethernet modular port adapter, all in a single slot.Each Cisco ASR 9000 Series modular line card provides simultaneous support for both Layer 2 and Layer 3 services and features, helping operators to qualify and stock a single line card that can be deployed in any combination of Layer 2 and Layer 3 applications. These capabilities help to reduce capital expenditures (CapEx) and operating expenses (OpEx), as well as reduce the time required to develop and deploy new services. The Cisco modular line cards set a new standard for service density, allowing operators to offer predictable, managed transport services while optimizing the use of network assets.The line cards, with their synchronization circuitry and dedicated backplane timing traces for accessing the RSP’s Stratum-3 subsystem, provide standards-based line-interface functions for delivering and deriving transport-class network timing, allowing support of network-synchronized services and applications such as mobile backhaul and time-division multiplexing (TDM) migration. Coupled with the Cisco RSP-440 route switch processor, the line cards can also be used for applications requiring IEEE 1588v2 synchronization services. Recognizing that real-time media dominate next-generation services, Cisco has integrated media-monitoring technology into the Cisco Modular line cards. This multimedia technology allows real-time monitoring and statistics collection of real-time video and voice flows, facilitating proactive maintenance and management of today’s interactive services.Addressing the advantages of consolidating IP and dense wavelength-division multiplexing (DWDM) networking, G.709 with Advanced Forward Error Correction (FEC) is provided. G.709 provides visibility into the DWDM transmission system to permit rapid detection and recovery from transmission-layer and DWDM impairments.G.709 can also be configured for proactive protection if signal degradation is detected; it prevents traffic loss and link outage. Advanced FEC extends transmission-layer performance, delivering extended performance over an amplified system without the cost of regeneration or transponders.Table 1 lists the features and benefits of the Cisco modular line cards. Specific feature and scale support is hardware and software dependent.Table 1. Features and Benefits of Cisco ASR 9000 Series Modular Line CardsLine Card TypesThe Cisco ASR 9000 Series modular line cards are available in Service Edge Optimized and Packet Transport Optimized variants.●Service Edge Optimized line cards are designed for customer deployments requiring enhanced quality ofservice (QoS).●Packet Transport Optimized line cards are designed for network deployments where basic QoS is required. Different line card types may be mixed within the same system.Feature licenses are also available to turn on advanced featu res on the line cards, as described in the “Software Licensing” section later in this document.Product SpecificationsTable 2 provides product specifications for the Cisco ASR 9000 Series modular line cards.Table 2. Product Specifications1Short-term refers to a period of not more than 96 consecutive hours and a total of not more than 15 days in 1 year. (This number refers to a total of 360 hours in any given year, but no more than 15 occurrences during that 1-year period.)Weights and DimensionsTable 3 shows the different physical dimensions and associated weight of the ASR 9000s modular line cards and modular port adapters.Table 3. Physical DimensionsPluggable InterfacesThe Cisco ASR 9000 Series Modular Line Cards support a wide range of SFP, XFP, and QSFP pluggable interfaces. Please see the Cisco ASR 9000 Transceiver Modules: Line Card Support data sheet for a complete list.System RequirementsThe Cisco ASR 9000 Series Modular Line Cards may be deployed in the 20-slot, 10-slot and 6-slot chassis, with Cisco IOS XR Software Release 4.2.0 or later. Table 4 shows the system software requirements.Table 4. System Software RequirementsSoftware LicensingLine Card Feature LicensesIn addition to the two optimization versions of the Cisco modular line cards, optional per-line-card feature licenses can be used to turn on advanced features on the line cards. Layer 3 VPN licenses provide access to VPN Routing and Forwarding (VRF) instances on a per-line-card basis. They include the Infrastructure VRF license to support up to 8 VRF instances and Advanced IP licenses to support up to full-scale VRF instances. The Advanced Optical license enables G.709 and FEC for DWDM systems on a per-line-card basis. The Advanced Video license enables inline video monitoring feature on a per-line-card basis. Table 5 lists the line card feature licenses.Table 5. Feature Licenses for Cisco ASR 9000 Series Modular Line CardsSystem-Level Feature LicensesCisco modular line cards also support the deployment of advanced features based on Cisco ASR 9000 Series system-level licenses. The Lawful Intercept license enables lawful intercept for surveillance of packet streams that flow through Cisco ASR 9000 ports. The Advanced Mobile license enables the IEEE 1588-2008 protocol to distribute precision time and frequency across the network. The Broadband Network Gateway (BNG) license enables high-scale Ethernet BNG with session and subscriber awareness. Inline video monitoring on Cisco Modular line cards can also be enabled using a system-level Advanced Video License. Table 6 lists the system licenses supported by Cisco Modular line cards.Table 6. System-Level Feature Licenses Supported by Cisco Modular Line CardsOrdering InformationTable 7 provides ordering information for the Cisco ASR 9000 Series modular line cards and modular port adapters.Table 7. Ordering InformationDownloading the SoftwareVisit the Cisco Software Center to download Cisco IOS Software.Cisco Services for the Cisco ASR 9000 SeriesThrough a lifecycle services approach, Cisco delivers comprehensive support to service providers to help them successfully deploy, operate, and optimize their IP Next-Generation Networks (IP NGNs). Cisco Services for the Cisco ASR 9000 Series Aggregation Services Routers provide the services and proven methodologies that help assure service deployment with substantial return on investment, operational excellence, optimal performance, and high availability. These services are delivered using leading practices, tools, processes, and lab environments developed specifically for Cisco ASR 9000 Series deployments and post-implementation support. The Cisco Services team addresses your specific requirements, mitigates risk to existing revenue-generating services, and helps accelerate time to market for new network services.For more information about Cisco Services, contact your local Cisco account representative or visit/go/spservices.。
DS2208数字扫描器产品参考指南说明书
-05 Rev. A
6/2018
Rev. B Software Updates Added: - New Feedback email address. - Grid Matrix parameters - Febraban parameter - USB HID POS (formerly known as Microsoft UWP USB) - Product ID (PID) Type - Product ID (PID) Value - ECLevel
-06 Rev. A
10/2018 - Added Grid Matrix sample bar code. - Moved 123Scan chapter.
-07 Rev. A
11/2019
Added: - SITA and ARINC parameters. - IBM-485 Specification Version.
No part of this publication may be reproduced or used in any form, or by any electrical or mechanical means, without permission in writing from Zebra. This includes electronic or mechanical means, such as photocopying, recording, or information storage and retrieval systems. The material in this manual is subject to change without notice.
KSZ9021RN to KSZ9031RNX Migration Guide
KSZ9021RN to KSZ9031RNXMigration GuideRev. 1.1IntroductionThis document summarizes the hardware pin and software register differences for migrating from an existing board design using the KSZ9021RN PHY to a new board design using the KSZ9031RNX PHY. For hardware and software details, consult reference schematic and data sheet of each respective device.Data sheets and support documentations can be found on Micrel’s web site at: .Differences SummaryTable 1 summarizes the supported device attribute differences between KSZ9021RN and KSZ9031RNX PHY devices.Device Attribute KSZ9021RN KSZ9031RNXReduced Gigabit Media Independent Interface (RGMII) RGMII Version 1.3 (power-up default) using off-chip data-to-clock delays with register options to:•Set on-chip (RGMII Version 2.0) delays•Make adjustments and corrections to TXand RX timing pathsRGMII Version 2.0 (power-up default) using on-chip data-to-clock delays with register options to:•Set off-chip (RGMII Version 1.3) delays•Make adjustments and corrections to TXand RX timing pathsTransceiver (AVDDH)Voltage3.3V only 3.3V or 2.5V (commercial temperature only)Digital I/O (DVDDH)Voltage3.3V or 2.5V 3.3V, 2.5V or 1.8VIndirect Register Access Proprietary (Micrel defined) –Extended Registers IEEE defined –MDIO Manageable Device (MMD) RegistersEnergy-Detect Power-Down (EDPD) Mode Not Supported Supported for further power consumptionreduction when cable is disconnected; Disabledas the power-up default and enable using MMDregisterIEEE 802.3azEnergy Efficient Ethernet (EEE) Mode Not Supported Supported with:•Low Power Idle (LPI) mode for1000Base-T and 100Base-TX•Transmit Amplitude reduction for10Base-T (10Base-Te)•Associated MMD registers for EEEWake-on-LAN (WOL) Not Supported Supported with:•Wake-up using detection of Link Status,Magic Packet, or Custom-Packet•PME_N interrupt output signal•Associated MMD registers for WOL Table 1. Summary of Device Attribute Differences between KSZ9021RN and KSZ9031RNXPin DifferencesTable 2 summarizes the pin differences between KSZ9021RN and KSZ9031RNX PHY devices. Pin #KSZ9021RNKSZ9031RNXPin NameType Pin FunctionPin NameTypePin Function1 AVDDH P 3.3V analog V DD AVDDH P 3.3V/2.5V (commercial temp only) analog V DD 12 AVDDH P 3.3V analog V DD AVDDH P 3.3V/2.5V (commercial temp only) analog V DD 13VSS_PSGndDigital groundNC–No connectThis pin is not bonded and can be connected to digital ground for footprint compatibility with the Micrel KSZ9021RN Gigabit PHY.16 DVDDH P3.3V / 2.5V digital V DD DVDDH P 3.3V, 2.5V, or 1.8V digital V DD_I/O 17 LED1 /PHYAD0I/OLED Output:Programmable LED1 OutputConfig Mode:The pull-up/pull-down value is latched as PHYAD[0] during power-up / reset.LED1 /PHYAD0 /PME_N1I/O LED1 output:Programmable LED1 outputConfig mode:The voltage on this pin issampled and latched during the power-up/reset process to determine the value of PHYAD[0].PME_N output:Programmable PME_N output (pin option 1). This pin function requires an external pull-up resistor to DVDDH (digital V DD_I/O ) in a range from 1.0k Ω to 4.7k Ω. When asserted low, this pin signals that a WOL event has occurred.When WOL is not enabled, this pin function behaves as per the KSZ9021RN pin definition.This pin is not an open-drain for all operating modes.34 DVDDH P3.3V / 2.5V digital V DD DVDDH P 3.3V, 2.5V, or 1.8V digital V DD_I/O38 INT_N O Interrupt OutputThis pin provides aprogrammable interrupt output and requires an external pull-up resistor to DVDDH in the range of 1K to 4.7K ohms for active low assertion.INT_N/O Interrupt OutputThis pin provides aprogrammable interrupt output and requires an external pull-up resistor to DVDDH in the range of 1K to 4.7K ohms for active low assertion.This pin is an open-drain.PME_N2 PME_N output: Programmable PME_N output (pin option 2). When asserted low, this pin signals that a WOL event has occurred.When WOL is not enabled, this pin function behaves as per the KSZ9021RN pin definition. This pin is not an open-drain for all operating modes.40 DVDDH P 3.3V / 2.5V digital V DD DVDDHP3.3V, 2.5V, or 1.8V digitalV DD_I/O47 AVDDH P 3.3V analog V DD NC–NoconnectThis pin is not bonded and canbe connected to AVDDH powerfor footprint compatibility withthe Micrel KSZ9021RN GigabitPHY.48 ISET I/O Set transmit output levelConnect a 4.99KΩ 1%resistor to ground on thispin. ISET I/O Set the transmit output levelConnect a 12.1kΩ 1% resistorto ground on this pin.Table 2. Pin Differences between KSZ9021RN and KSZ9031RNXStrapping Option DifferencesThere is no strapping pin difference between KSZ9021RN and KSZ9031RNX.Register Map DifferencesThe register space within the KSZ9021RN and KSZ9031RNX consists of direct-access registers and indirect-access registers.Direct-access RegistersThe direct-access registers comprise of IEEE-Defined Registers (0h – Fh) and Vendor-Specific Registers (10h – 1Fh). Between the KSZ9021RN and KSZ9031RNX, the direct-access registers and their bits have the same definitions, except for the following registers in Table 3.Direct-access RegisterKSZ9021RN KSZ9031RNXName Description Name Description3h PHYIdentifier2 Bits [15:10] (part of OUI) – same asKSZ9031RNXBits [9:4] (model number) – unique forKSZ9021RNBits [3:0] (revision number) – uniquedepending on chip revision PHY Identifier 2 Bits [15:10] (part of OUI) – same asKSZ9021RNBits [9:4] (model number) – unique forKSZ9031RNXBits [3:0] (revision number) – uniquedepending on chip revisionBh ExtendedRegister –Control Indirect Register AccessSelect read/write control andpage/address of Extended RegisterReserved ReservedDo not change the default value ofthis registerCh ExtendedRegister –Data Write Indirect Register AccessValue to write to Extended RegisterAddressReserved ReservedDo not change the default value ofthis registerDh ExtendedRegister –Data Read Indirect Register AccessValue read from Extended RegisterAddressMMD Access –ControlIndirect Register AccessSelect read/write control and MMDdevice addressEh Reserved ReservedDo not change the default value ofthis register MMD Access –Register/DataIndirect Register AccessValue of register address/data for theselected MMD device address1Fh, bit [1] Software Reset 1 = Reset chip, except all registers0 = Disable resetReserved ReservedTable 3. Direct-access Register Differences between KSZ9021RN and KSZ9031RNXIndirect-access RegistersThe indirect register mapping and read/write access are completely different for the KSZ9021RN (uses Extended Registers) and KSZ9031RNX (uses MMD Registers). Refer to respective devices’ data sheets for details.Indirect registers provide access to the following commonly used functions:•1000Base-T link-up time control (KSZ9031RNX only)• Pin strapping status• Pin strapping override•Skew adjustments for RGMII clocks, control signals, and datao Resolution of skew steps are different between KSZ9021RN and KSZ9031RNX•Energy-Detect Power-Down Mode enable/disable (KSZ9031RNX only)•Energy Efficient Ethernet function (KSZ9031RNX only)•Wake-on-LAN function (KSZ9031RNX only)Revision HistoryRevision Date Summary of ChangesMigration Guide created1.0 12/7/121.1 6/7/13 Indicate PME_N1 (pin 17) for KSZ9031RNX is not an open-drain.Indicate INT_N (pin 38) is an open-drain for KSZ9021RN, but is not an open-drain for KSZ9031RNX.Indicate direct-access register 1Fh, bit [1] difference.。
THINKPAD开机错误消息及报警信息详解
THINKPAD开机错误消息及报警信息详解注:在图表中,x 可以是任何字符。
0175: Bad CRC1, stop POST task(CRC1 错误,停止POST 任务)0176: System Security - The system has been tampered with.(系统安全性- 系统受到了干扰。
)0177: Bad SVP data, stop POST task.(SVP 数据错误,停止POST 任务。
)0182: Bad CRC2.Enter BIOS Setup and load Setup defaults.(CRC2 错误。
请进入BIOS Setup 并装入Setup 缺省值。
)0185: Bad startup sequence settings. Enter BIOS Setup and load Setup defaults.(CRC2 错误。
请进入BIOS Setup 并装入Setup 缺省值。
)0187: EAIA data access error(EAIA 数据访问错误)0188: Invalid RFID Serialization Information Area.(无效的RFID 序列化信息区域。
)0189: Invalid RFID configuration information area(无效的RFID 配置信息区域)0190: Critical low-battery error(电池电量严重不足错误)0191: System Security - Invalid remote change requested.(系统安全性-请求了无效的远程更改。
)0192: System Security - Embedded Security hardware tamper detected.(系统安全性-检测到Embedded Security 硬件窜改。
TC39x产品数据手册和用户指南增补文件说明书
TC397XP256F300SBCKXUMA1AURIX™ TC39x variantsAbout this documentScope and purposeThis document is an addendum to the TC39x Product Data Sheet and User's Manual, listing all planned product variants, key parameters such as memory size and optional features.The User's Manual lists functions implemented on the Silicon, but this document counts functions that are pinning dependent; i.e. functions are counted that are connected to at least one package pin. As pins are overlaid with several functions the pinning needs to be checked (see Product Data Sheet) to determine the number of usable functions in an application.Naming conventionsPrefix:•SAK: T ambient Temperature Range from -40 °C up to +125 °C.•SAL: T ambient Temperature Range from -40 °C up to +150 °C (packaged device).Feature package:•P: Standard feature.•E: Emulation device with all features of the emulated standard type, additionally full MCDS, overlay functionality for calibration, AGBT as trace interface for development (depending on the package).•C,V,Z: Customer Specific.•A: ADAS ext. Memory.•T: ADAS + emulation.•X: Extended Feature device. These products contain the extended memory (EMEM) of the ADAS subsystem.The ADAS peripherals SPU, RIF and CIF are not available.•M: MotionWise software.•F: Extended Flash.•G: Additional Connectivity.•H: ADAS Standard feature.•N: Standard feature with AMU.Table of contentsTable of contentsAbout this document . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1Table of contents . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2 1TC39x BD step variants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3 1.1TC39x BD step (part 1) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3 1.2TC39x BD step (part 2) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .6 2TC39x BC step variants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .9 2.1TC39x BC step (part 1) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .9 2.2TC39x BC step (part 2) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .12 3Memory maps of TC39x variants . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .15 Revision history . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .18Disclaimer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .191TC39x BD step variants1.1TC39x BD step (part 1)A table listing the TC39x BD step variants.Table 1TC39x variantsSAL-TC399XX-256F300SSAL-TC399XP-256F300SSAL-TC397XP-256F300SSAK-TC399XP-256F300SSAK-TC399XX-256F300SSAK-TC397XP-256F300SSAK-TC397XA-256F300SStepBD BD BD BD BD BD BD Production statusStandard Standard Standard Standard Standard Standard Standard Package typePG-LFBGA-516PG-LFBGA-516PG-LFBGA-292PG-LFBGA-516PG-LFBGA-516PG-LFBGA-292PG-LFBGA-292 PinoutLFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm ADAS Reference siliconTC39x TC39x TC39x TC39x TC39x TC39x TC39x Temperature range (ambient)-40°C up to+150°C -40°C up to+150°C-40°C up to+150°C-40°C up to+125°C-40°C up to+125°C-40°C up to+125°C-40°C up to+125°CChip IDAttention:The value of SCU_CHIPID in the UCODE field contains the default value 0 not the µCode version.0xAF0199930x8F0199930x8F0197930x8F0199930xAF0199930x8F0197930xBF019793 Cores / checker cores6/46/46/46/46/46/46/4 Maximum frequency (MHz)300300300300300300300 Program flash (MB)16161616161616 Data flash 0 (single-ended) (KB)1024102410241024102410241024 Total SRAM (without EMEM and Cache) (KB)2528252825282528252825282528 EMEM Size (KB)4096000409604096 1 TC39x BD step variantsTable 1TC39x variants (continued)SAL-TC399XX-256F300SSAL-TC399XP-256F300SSAL-TC397XP-256F300SSAK-TC399XP-256F300SSAK-TC399XX-256F300SSAK-TC397XP-256F300SSAK-TC397XA-256F300SDSPR (KB)240 in CPU0&1;96 other240 inCPU0&1; 96other240 inCPU0&1; 96other240 inCPU0&1; 96other240 inCPU0&1; 96other240 inCPU0&1; 96other240 inCPU0&1; 96otherDLMU (KB)64 per CPU64 per CPU64 per CPU64 per CPU64 per CPU64 per CPU64 per CPU PSPR (KB)64646464646464 LMU (KB)768768768768768768768 DAM (KB)128128128128128128128 AMU1)No No No No No No No ADC (primary groups/channels)8/648/645/408/648/645/404/26 ADC (secondary groups/channels)4/424/604/604/604/604/604/42 ADC (fast compare channels)8888888 ADC (EDSADC channels)14146141466 CAN (modules/nodes)3/3x43/3x43/3x43/3x43/3x43/3x43/3x4 FlexRay (modules/channels)2/2x22/2x22/2x22/2x22/2x22/2x22/2x2 HSSL modules2222222 ASCLIN modules / with ASC and LIN / with 3-wire SPI12/12/1212/12/1212/12/1112/12/1212/12/1212/12/1112/12/9 QSPI modules / with LVDS1AMU is abbreviated as ASC Modeling Unit. For Additional details about AMU, Contact an Infineon Representative1 TC39x BD step variantsTable 1TC39x variants (continued)SAL-TC399XX-256F300SSAL-TC399XP-256F300SSAL-TC397XP-256F300SSAK-TC399XP-256F300SSAK-TC399XX-256F300SSAK-TC397XP-256F300SSAK-TC397XA-256F300S6/26/26/26/26/26/26/1 SENT channels25252025252017 MSC modules4424421 PSI5 channels4444444 PSI5-S moduleYes Yes Yes Yes Yes Yes Yes SDMMC moduleYes Yes Yes Yes Yes Yes Yes Maximum Ethernet availability: 1GBit/100Mbit/No1Gbit/s1Gbit/s1Gbit/s1Gbit/s1Gbit/s1Gbit/s1Gbit/s MCDS availabilityMCDS MCDS MCDS MCDS MCDS MCDS MCDS ADAS cluster availableNo No No No No No Yes HSM availableYes Yes Yes Yes Yes Yes Yes 1 TC39x BD step variants1.2TC39x BD step (part 2)A continuation of the TC39x BD step variants. Table 2TC39x BD step (part 2)SAK-TC397QA-160F300SSAK-TC397XX-256F300SSAK-TC397QP-192F300SSAK-TC397QP-256F300SSAK-TC397XZ-256F300SSAK-TC397XM-256F300SStepBD BD BD BD BD BD Production statusStandard Standard Customerspecific CustomerspecificCustomerspecificStandardPackage typePG-LFBGA-292PG-LFBGA-292PG-LFBGA-292PG-LFBGA-292PG-LFBGA-292PG-LFBGA-292 PinoutADAS LFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm Reference siliconTC39x TC39x TC39x TC39x TC39x TC39x Temperature range (ambient)-40°C up to+125°C -40°C up to+125°C-40°C up to+125°C-40°C up to+125°C-40°C up to+125°C-40°C up to+125°CChip IDAttention:The value of SCU_CHIPID in the UCODE field contains the default value 0 not the µCode version.0xCC0197930xAF0197930xCD0197930xCF0197930xFF0197930x8F019793 Cores / checker cores4/36/44/44/46/46/4 Maximum frequency (MHz)300300300300300300 Program flash (MB)101612161616 Data flash 0 (single-ended) (KB)102410241024102410241024 Total SRAM (without EMEM and Cache) (KB)169625281184208016322528 EMEM Size (KB)409640960000 DSPR (KB)1 TC39x BD step variantsTable 2TC39x BD step (part 2) (continued)SAK-TC397QA-160F300SSAK-TC397XX-256F300SSAK-TC397QP-192F300SSAK-TC397QP-256F300SSAK-TC397XZ-256F300SSAK-TC397XM-256F300S240 in CPU0&1;96 other 240 in CPU0&1;96 other240 in CPU0&1;96 other240 in CPU0&1;96 other240 in CPU0&1;96 other240 in CPU0&1;96 otherDLMU (KB)64 per CPU64 per CPU64 per CPU64 per CPU64 per CPU64 per CPU PSPR (KB)646464646464 LMU (KB)51276807680768 DAM (KB)012801280128 AMU2)No No No No No No ADC (primary groups/channels)4/265/405/405/405/405/40 ADC (secondary groups/channels)4/424/604/604/604/604/60 ADC (fast compare channels)888888 ADC (EDSADC channels)666666 CAN (modules/nodes)3/3x43/3x43/3x43/3x43/3x43/3x4 FlexRay (modules/channels)2/2x22/2x22/2x22/2x22/2x22/2x2 HSSL modules222222 ASCLIN modules / with ASC and LIN / with 3-wire SPI12/12/912/12/1112/12/1112/12/1112/12/1112/12/11 QSPI modules / with LVDS6/16/26/26/26/26/2 SENT channels2AMU is abbreviated as ASC Modeling Unit. For Additional details about AMU, Contact an Infineon Representative1 TC39x BD step variantsTable 2TC39x BD step (part 2) (continued)SAK-TC397QA-160F300SSAK-TC397XX-256F300SSAK-TC397QP-192F300SSAK-TC397QP-256F300SSAK-TC397XZ-256F300SSAK-TC397XM-256F300S172020202020 MSC modules122222 PSI5 channels444444 PSI5-S moduleYes Yes Yes Yes Yes-SDMMC moduleYes Yes Yes Yes Yes Yes Maximum Ethernet availability: 1GBit/100Mbit/No1Gbit/s1Gbit/s1Gbit/s1Gbit/s1Gbit/s1Gbit/s MCDS availabilityMCDS MCDS MCDS MCDS MCDS MCDS ADAS cluster availableYes No No No No No HSM availableYes Yes Yes Yes Yes Yes 1 TC39x BD step variants2TC39x BC step variants2.1TC39x BC step (part 1)A table of TC39x BC step variants (part 1).Table 3TCxxx YY stepSAL-TC399XX-256F300SSAL-TC399XP-256F300SSAL-TC397XP-256F300SSAK-TC399XP-256F300SSAK-TC399XX-256F300SSAK-TC397XP-256F300SSAK-TC397XA-256F300SStepBC BC BC BC BC BC BC Production statusStandard Standard Standard Standard Standard Standard Standard Package typePG-LFBGA-516PG-LFBGA-516PG-LFBGA-292PG-LFBGA-516PG-LFBGA-516PG-LFBGA-292PG-LFBGA-292 PinoutLFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm ADAS Reference siliconTC39x TC39x TC39x TC39x TC39x TC39x TC39x Temperature range (ambient)-40°C up to+150°C -40°C up to+150°C-40°C up to+150°C-40°C up to+125°C-40°C up to+125°C-40°C up to+125°C-40°C up to+125°CChip IDAttention:The value of SCU_CHIPID in the UCODE field contains the default value 0 not the µCode version.0xAF0199920x8F0199920x8F0197920x8F0199920xAF0199920x8F0197920xBF019792 Cores / checker cores6/46/46/46/46/46/46/4 Maximum frequency (MHz)300300300300300300300 Program flash (MB)16161616161616 Data flash 0 (single-ended) (KB)1024102410241024102410241024 Total SRAM (without EMEM and Cache) (KB)2528252825282528252825282528 EMEM Size (KB)4096000409604096 2 TC39x BC step variantsTable 3TCxxx YY step (continued)SAL-TC399XX-256F300SSAL-TC399XP-256F300SSAL-TC397XP-256F300SSAK-TC399XP-256F300SSAK-TC399XX-256F300SSAK-TC397XP-256F300SSAK-TC397XA-256F300SDSPR (KB)240 in CPU0&1;96 other240 inCPU0&1; 96other240 inCPU0&1; 96other240 inCPU0&1; 96other240 inCPU0&1; 96other240 inCPU0&1; 96other240 inCPU0&1; 96otherDLMU (KB)64 per CPU64 per CPU64 per CPU64 per CPU64 per CPU64 per CPU64 per CPU PSPR (KB)64646464646464 LMU (KB)768768768768768768768 DAM (KB)128128128128128128128 AMU3)No No No No No No No ADC (primary groups/channels)8/648/645/408/648/645/404/26 ADC (secondary groups/channels)4/604/604/604/604/604/604/42 ADC (fast compare channels)8888888 ADC (EDSADC channels)14146141466 CAN (modules/nodes)3/3x43/3x43/3x43/3x43/3x43/3x43/3x4 FlexRay (modules/channels)2/2x22/2x22/2x22/2x22/2x22/2x22/2x2 HSSL modules2222222 ASCLIN modules / with ASC and LIN / with 3-wire SPI12/12/1212/12/1212/12/1112/12/1212/12/1212/12/1112/12/9 QSPI modules / with LVDS3AMU is abbreviated as ASC Modeling Unit. For Additional details about AMU, Contact an Infineon RepresentativeTable 3TCxxx YY step (continued)SAL-TC399XX-256F300SSAL-TC399XP-256F300SSAL-TC397XP-256F300SSAK-TC399XP-256F300SSAK-TC399XX-256F300SSAK-TC397XP-256F300SSAK-TC397XA-256F300S6/26/26/26/26/26/26/1 SENT channels25252025252017 MSC modules4424421 PSI5 channels4444444 PSI5-S moduleYes Yes Yes Yes Yes Yes Yes SDMMC moduleYes Yes Yes Yes Yes Yes Yes Maximum Ethernet availability: 1GBit/100Mbit/No1Gbit/s1Gbit/s1Gbit/s1Gbit/s1Gbit/s1Gbit/s1Gbit/s MCDS availabilityMCDS MCDS MCDS MCDS MCDS MCDS MCDS ADAS cluster availableNo No No No No No Yes HSM availableYes Yes Yes Yes Yes Yes Yes2.2TC39x BC step (part 2)A table of TC39x BC step variants (part 2). Table 4TC39x BC step (part 2)SAK-TC397QA-160F300SSAK-TC397XX-256F300SSAK-TC397QP-192F300SSAK-TC397QP-256F300SSAK-TC397XZ-256F300SStepBC BC BC BC BC Production statusStandard Standard Customer specific Customer specific Customer specific Package typePG-LFBGA-292PG-LFBGA-292PG-LFBGA-292PG-LFBGA-292PG-LFBGA-292 PinoutADAS LFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm LFBGA 0.8 mm Reference siliconTC39x TC39x TC39x TC39x TC39x Temperature range (ambient)-40°C up to +125°C-40°C up to +125°C-40°C up to +125°C-40°C up to +125°C-40°C up to +125°C Chip IDAttention:The value of SCU_CHIPID in the UCODE field contains the default value 0 not the µCode version.0xCC0197920xAF0197920xCD0197920xCF0197920xFF019792 Cores / checker cores4/36/44/44/46/4 Maximum frequency (MHz)300300300300300 Program flash (MB)1016121616 Data flash 0 (single-ended) (KB)10241024102410241024 Total SRAM (without EMEM and Cache) (KB)16962528118420801632 EMEM Size (KB)40964096000 DSPR (KB)240 in CPU0&1; 96other 240 in CPU0&1; 96other240 in CPU0&1; 96other240 in CPU0&1; 96other240 in CPU0&1; 96otherDLMU (KB)Table 4TC39x BC step (part 2) (continued)SAK-TC397QA-160F300SSAK-TC397XX-256F300SSAK-TC397QP-192F300SSAK-TC397QP-256F300SSAK-TC397XZ-256F300S64 per CPU64 per CPU64 per CPU64 per CPU64 per CPU PSPR (KB)6464646464 LMU (KB)51276807680 DAM (KB)012801280 AMU4)No No No No No ADC (primary groups/channels)4/265/405/405/405/40 ADC (secondary groups/channels)4/424/604/604/604/60 ADC (fast compare channels)88888 ADC (EDSADC channels)66666 CAN (modules/nodes)3/3x43/3x43/3x43/3x43/3x4 FlexRay (modules/channels)2/2x22/2x22/2x22/2x22/2x2 HSSL modules22222 ASCLIN modules / with ASC and LIN / with 3-wire SPI12/12/912/12/1112/12/1112/12/1112/12/11 QSPI modules / with LVDS6/16/26/26/26/2 SENT channels1720202020 MSC modules12222 4AMU is abbreviated as ASC Modeling Unit. For Additional details about AMU, Contact an Infineon RepresentativeTable 4TC39x BC step (part 2) (continued)SAK-TC397QA-160F300SSAK-TC397XX-256F300SSAK-TC397QP-192F300SSAK-TC397QP-256F300SSAK-TC397XZ-256F300SPSI5 channels44444 PSI5-S moduleYes Yes Yes Yes Yes SDMMC moduleYes Yes Yes Yes Yes Maximum Ethernet availability: 1GBit/100Mbit/No1Gbit/s1Gbit/s1Gbit/s1Gbit/s1Gbit/s MCDS availabilityMCDS MCDS MCDS MCDS MCDS ADAS cluster availableYes No No No No HSM availableYes Yes Yes Yes Yes3Memory maps of TC39x variantsThis section describes the influence of the available feature variants on the memory map.Program FlashVariants:•16 MB: umbrella (5 x 3 MB, 1 x 1 MB), see User's Manual.•12 MB: 4 x 3 MB (see Figure below).•10 MB: 3 + 2 + 3 + 2 MB (see Figure below).Figure 1TC39x PFlash variantsCores / checker coresVariants:•6/4: umbrella, see User's Manual•4/4: not available are CPU4 and CPU5 including their RAMs (DSPR, DCACHE, DTAG, PSPR, PCACHE, PTAG, DLMU)•4/3: not available are CPU4 and CPU5 including their RAMs (DSPR, DCACHE, DTAG, PSPR, PCACHE, PTAG, DLMU) and CPU3 lockstep is not available (LCLCON1.LSEN3 must stay 0B).LMUVariants:•768 KB: umbrella, see User's Manual.•512 KB: only LMU0 and LMU1 LMU RAM are available (see Figure below).•0 KB: no LMURAM is available (see Figure below)Figure 2TC39x LMU VariantsDAMVariants:•128 KB: umbrella, see User's Manual•0 KB: none of the DAM RAMs are availableADAS cluster availableVariants:•Yes: umbrella, see User's Manual•No: the following instances are not available: HSPDM, RIF0, RIF1, SPU0, SPU1, SPUCFG0, SPUCFG1, SPU Lockstep SFR.EMEM availabilityVariants:•4096 KB: umbrella, see User's Manual.•0 KB: no EMEM available.ADC availability•Limitation on availability of ADC channels are caused by pin limitations. See Data Sheet for the pinning table of the package.Revision historyDocument version Date ofreleaseDescription of changesV1.02018-06-08•First release.V1.12018-08-06•Added row "Reference Silicon" (needed e.g. for TC37x) to refer user toUser's Manual Appx.V1.22019-03-01•In "About this document": Corrected "overloaded" to "overlaid".•In "About this document": Added Feature Package "M" and "E" andremove "R".•In "About this document": Added clarification concerning AGBT in E, A andT.•In "About this document": Removed feature packages B, C, H.•In "Variant Tables of TC39x": added device "SAK-TC397XM-256F300S"•In "Variant Tables of TC39x": added Feature Package "E" devices(Emulation Devices).V1.32019-06-12•Added the TC39x "BD" step Variants to Chapter 1•Removed the following Variants SAK-TC397XT-25 6F300S, SAK-TC397TT-256F300S for "BC" Step, Chapter 2•Chapter 1 and 2: TC39x Bx step variants table format changed to fit all thecontents.•Chapter 1 and 2:Added new row in the variant tables called "AMU" withthe footnote for additional details.•Chapter: About this document: Feature package definitions are updatedto consistent with the product naming nomenclature definition. Revision historyTrademarksAll referenced product or service names and trademarks are the property of their respective owners.Edition 2019-06Published byInfineon Technologies AG 81726 Munich, Germany© 2019 Infineon Technologies AG All Rights Reserved.Do you have a question about any aspect of this document? Email: ********************Document referenceIFX-aah1559043745375IMPORTANT NOTICEThe information given in this document shall in noevent be regarded as a guarantee of conditions orcharacteristics (“Beschaffenheitsgarantie”) .With respect to any examples, hints or any typical valuesstated herein and/or any information regarding theapplication of the product, Infineon Technologieshereby disclaims any and all warranties and liabilities ofany kind, including without limitation warranties ofnon-infringement of intellectual property rights of anythird party.In addition, any information given in this document issubject to customer’s compliance with its obligationsstated in this document and any applicable legalrequirements, norms and standards concerningcustomer’s products and any use of the product ofInfineon Technologies in customer’s applications.The data contained in this document is exclusivelyintended for technically trained staff.It is theresponsibility of customer’s technical departments toevaluate the suitability of the product for the intendedapplication and the completeness of the productWARNINGSDue to technical requirements products may containdangerous substances. For information on the typesin question please contact your nearest InfineonTechnologies office.Except as otherwise explicitly approved by InfineonTechnologies in a written document signed byauthorized representatives of Infineon Technologies,Infineon Technologies’ products may not be used inany applications where a failure of the product orany consequences of the use thereof can reasonablybe expected to result in personal injuryTC397XP256F300SBCKXUMA1。
HP Integrity Superdome sx2000 and HP9000 sx2000 Se
简介《惠普企业级计算系统场地准备手册》已经详细介绍了惠普企业级计算机系统的安装服务流程,客户需要按照《场地准备手册》的内容进行机房场地的规划,检查机房环境是否符合手册的要求并准备好相应的辅助设备。
本手册基于《Site Preparation Guide HP Integrity Superdome/sx2000 andHP9000/sx2000 Servers – Forth Edition,11-2007》编写,提供了Superdome主机系统更详细的信息,以帮助客户更好的完成针对Superdome主机系统的场地准备。
HP Integrity Superdome包括服务器机柜(Server Cabinet)、I/O扩展柜和管理工作站。
其中服务器机柜(Server Cabinet)是superdome的主要单元,16way 和32way Superdome 包含一个服务器机柜,而64way superdome包含2个服务器机柜。
下图是一个64way superdome服务器机柜的摆放示意图。
Superdome 管理工作站(SMS)是采用windows操作系统的工业标准服务器。
可以选择安装在IO扩展柜中或放置在桌面上。
安装在机柜中的SMS的显示器通常选用机柜安装方式的TFT5600 LCD液晶显示器。
系统规格z服务器的尺寸与重量服务器机柜和扩展柜的尺寸如下,扩展柜选用HP/E41或HP 10642G2机柜:机型 高(mm) 宽(mm) 深(mm)柜类Superdome主机柜1956 762 1219 HP/E41 1970 597 927 HP 10642 G2 1003 605 1184服务器机柜重量:Superdome组成部件 重量(lb/kg) 数量 总重(lb/kg)Superdome Chassis 745.17/338.1 1 745.17/338.10Cell board 30.96/14.048 247.68/112.32 Cell Power board 8.50/3.868 68.00/30.88DIMMs 0.20/0.09256 51.20/23.04 Bulk power supply 3.83/1.74 6 23.00/10.44PDCA 26.00/11.80 2 52.00/23.59 I/O card cage 36.50/16.56 4 146.00/66.24I/O cards 0.45/0.2048 21.60/9.8032Way Superdome满配置重量 1 1354.7/614.4Superdome主机柜中最多可以安装4个I/O card cage,如果主机多于4个I/Ocard cage,可以安装在IO扩展柜中,其重量及功率如下表:I/O组成部件 重量(kg) 高度 典型功率(w)SD XPC/ICE 52 15 600SD ICE 22 9U 600I/O card cage 16.56 N/A 500 z安装空间和底部尺寸Superdome服务器机柜在摆放时,前后应该留出设备维护的空间,机柜前面建议维护空间为106.7cm,机柜后面最小维护空间为91.4cm。
Galaxy 9000彩页中文版
灵活配置: 无限升级空间
MGETM GalaxyTM 9000可以搭配不同类型电池、架构和选件,确保提供一流 供电品质。它完全采用模块化设计,可在不影响负载工作的情况下进行升 级。 易于升级: 更高功率, 更多冗余 MGETM GalaxyTM 9000系列UPS可作为单机安装、模块化并联,或者采用公 共静态旁路进行并联,因而可实现: > 提高电源可用性 > 提高电源功率 MGETM GalaxyTM 9000系列UPS可与包括变压器、发电机组、UPS等在内的 外部电源进行同步,也可向静态切换开关(STS)供电以确保实现最高的电源 可用性。
MGETM GalaxyTM 9000三相UPS 8来自0/900 KVA>
高可用性 大功率
如今,数据中心的规模正逐步扩 大,刀片式服务器对功率的需求亦 水涨船高。同时,随着数字化经济 的发展,半导体行业对UPS的需求也 在逐渐加大。MGETM GalaxyTM 9000 系列UPS正好可以满足这些与时俱进 的功率需求,它具有如下优点:
Digibat同时支持: > 自动对电池系统进行测试而不会影响电池容量(测试
周期可调)。 > 电量不足时发出警告
拥有B2000和Cellwatch两种电池监测系统可供选 择,能够24小时不间断地监测电池系统,并可针对各 个电池模块的故障发出预警: > 不间断测量每块电池的电压和内阻。 > 辨别故障模块(趋势曲线) > 可单独更换某只电池。
操作安全高效。
远程 MGETMGalaxyTM 9000系列UPS集成了 APC研发的所有通讯装置,因此可以: > 监视UPS运行情况和运行环境 > 自动安全关闭由UPS供电的服务器操
DPCon组态软件使用手册
戴尔 Studio XPS 9100 服务手册.pdf_1700430590.8504634说明书
Dell™ Studio XPS™ 9100 服务手册注、小心和警告本说明文件中的信息如有更改,恕不另行通知。
© 2010 Dell Inc. 版权所有,翻印必究。
未经 Dell Inc. 书面许可,严禁以任何形式复制这些材料。
本文中使用的商标:Dell 、DELL 徽标和 Studio XPS 是 Dell Inc. 的商标;Microsoft 、Windows 和 Windows 开始按钮徽标是 Microsoft Corporation 在美国和/或其他国家和地区的商标或注册商标。
本说明文件中述及的其它商标和商品名称是指拥有相应标记和名称的公司或其制造的产品。
Dell Inc. 对其它公司的商标和商品名称不拥有任何所有权。
2010 年 6 月 Rev. A00管制型号:DCRM开始之前技术概览主机盖内存模块前挡板标牌背景灯模块PCI 卡和 PCI Express 卡前 USB 3.0 部件驱动器顶部护盖 I/O 面板 电源按钮模块 风扇 处理器 币形电池 电源设备 系统板 系统设置程序 刷新 BIOS注:“注”表示可以帮助您更好地使用计算机的重要信息。
小心:“小心”表示可能会损坏硬件或导致数据丢失,并告诉您如何避免此类问题。
警告:“警告”表示可能会造成财产损失、人身伤害甚至死亡。
1 标牌背景灯模块2 卡舌(3 个)3 标牌背景灯电缆4 螺钉(2 颗)5 铰接部件装回标牌背景灯模块1.请遵循开始之前中的说明。
2.将标牌背景灯模块插入前挡板的插槽。
3.向下按标牌背景灯模块,直到将其卡入到位。
4.将标牌背景灯电缆穿过固定卡舌。
5.将铰接部件上的螺孔与前挡板上的螺孔对齐。
6.装回将铰接部件固定到前挡板的两颗螺钉。
7.装回前挡板(请参阅装回前挡板)。
8.装回主机盖(请参阅装回主机盖)。
返回目录页面返回目录页面开始之前Dell™ Studio XPS™ 9100 服务手册技术规格建议使用的工具关闭计算机电源安全说明本手册提供有关卸下和安装计算机组件的说明。
ASR9000中文介绍资料(可编辑修改word版)
第1章简介Aggregation Service Router 9000 (ASR 9000)是思科针对下一代IP网络(IP NGN)转型而设计的超大容量运营商级别边缘路由器平台,以帮助运营商应对“Zettabyte时代”到来之后激增的网络容量需求、以及以太网服务和视频业务为流量主体的服务提供。
其产品特点包括:超大容量、极高密度的高速以太网接口、可持续的系统运行能力、不间断的视频体验和更低的碳排放量。
思科ASR 9000采用了创新的分布式操作系统 IOS-XR软件,该软件此前一直运行在思科高端集群路由器平台CRS-1,可实现路由器系统的永续运行。
思科ASR9000产品的推出标志着运营商已经做好迎接IP NGN转型的准备,运营商可以通过部署ASR9000,极大程度提高网络边缘的高速率以太网端口密度、系统转发容量和新型业务的承载能力,更好的应对未来在有线、固网宽带以及移动网络中快速增长的业务需求。
1.1 产品概述思科ASR9000是一个全分布式的路由器平台,主要的功能组件包括:●路由控制引擎●交换矩阵●线路线卡●可按需配置的电源模块(AC/DC)●可变速冗余风扇●机框ASR9000目前有两种类型的机框:●一种是竖插槽的10槽机框,宽17.38英寸*高36.75英寸*长28英寸,在标准机柜中可以放入2个10槽的ASR9000,每个10槽机框可插入8个线路板卡和2个路由控制引擎,支持前进风的散热方式。
冗余风扇配置,水平在插入在线路板卡的下方●另一种是横插槽的6槽机框,宽17.38英寸*高17.35英寸*长28英寸,在标准机柜中可以放入4个6槽的ASR9000,每个6槽机框可以插入4个线路板卡和2个路由控制引擎,支持侧进风的散热方式。
冗余风扇配置,垂直的插入在机框两侧ASR9000的背板已经具备支持每槽440Gbps带宽能力。
1.1.1 ASR9000 的路由控制引擎ASR9000支持冗余的路由控制引擎,路由控制引擎上配置有高性能CPU处理器(双核1.3GHZ)、大容量内存(4G)和硬盘(40G)。
nec-sv8000-9000-basic-feature-guide-user-说明书
SV8000 – 900n American Technologies (718) 937-3600
Page 1
NEC SV8000 - 9000 Basic Feature Guide
To allow others in the room to hear your caller with still talking on the handset, press SPEAKER twice during the call. Press SPEAKER again to turn off this feature Handset / Speakerphone mute Press MIC to mute the handset during a call (A confirmation tone is heard) Red light will be off when muted Press MIC again to turn off mute (Red light will be on when microphone is on) Call Pickup To answer a call ringing on any phone pickup phone and dial *# To answer a call ringing at a specific extension dial **plus the extension number Programming One-Touch Keys Press SPEAKER and dial 751 Press Function Key to be programmed Dial 01 plus any additional data (“ext #” or “9+outside #) Press HOLD Press SPEAKER Do Not Disturb To Set DND – Press SPEAKER 7473 To Cancel DND – Press SPEAKER 7470 Conference Calls With the first call in progress (internal and external) press the Conf softkey Dial the second party phone # either external or internal Press Add softkey (after they answer) Press the Begin softkey to connect all parties together You may add more parties (intenal or external) by pressing the Conf softkey again Missed Calls (Icon will be located in the upper left of the display) Select the Enter Cursor Key Select Option 1 Missed Calls Use the Up or Down Cursor to scroll through the missed call list The icon will turn off once all missed calls have been viewed Voicemail Features Setting up your voicemail Greeting
实达终端培训课件
STAR TC-9010X2系列XPE终端
型号列表 STAR TC-9010X2 硬件参数 CPU:Intel Atom D525 1.8G处理器(双核), 内存:2G DDR2内存(最大可扩充到4G) 存储介质:可根据客户需要选用DOM、SSD或2.5吋HDD 网卡:1个10M/100M/1000M自适应网卡(可扩充为双网卡) 音频接口:带有音频模块,可接驳音频输出和音频输入设备 其他接口:4个串口,1个并口,1个PS/2键盘接口,1个PS/2鼠标接 口、6个USB2.0接口(其中2个前置), 1个标准的XVGA接口 电压:110V~250V、47~63Hz 功耗:<40W 工作环境:温度:0℃~40℃、湿度:10%~80% 体积:294×245×55mm(不含底座支架)
1.2 XPE 系列终端的维护设置 基本界面
1.2 XPE终端的维护设置
为了使STAR TC 系列嵌入式计算机能够正常使用,一般要对该系 统进行一些基本的设置。注意:系统的设置都需要在Admin用户下进 行。 1、网络设置 通过网上邻居或者控制面板进入本地连接后,右 在控制面板中选择外观和主题,然后点击显示,将出现传统的 Windows的显示设置界面,用户可以调整显示分辨率,颜色质量和显 示刷新频率等设置。 3、自动登录设置 本嵌入式计算机可以建立多个用户,系统管理员可以建立普通权限 的用户,并且限制这些用户的功能,将它设置成自动登录的用户,这 样每次开机后可以直接登录指定的用户。
STAR TC-9030系列XPE终端
型号列表(内置电源) STAR TC-9030 STAR TC-9030M 硬件参数 CPU:Intel D2550 1.86GHz双核 内存:2G DDRIII内存 存储介质:可根据客户需要选用DOM、SSD或2.5吋HDD 网卡:1个10M/100M/1000M自适应网卡(可扩充为双网卡) 音频接口:带有音频模块,可接音频输出和音频输入设备 其他接口:4个串口,1个并口,1个PS/2键盘接口,1个PS/2鼠 标接口、6个USB2.0接口(其中2个前置), 1个标准的VGA接口 电压:110V~250V、47~63Hz 功耗:<28W 工作环境:温度:0℃~40℃、湿度:10%~80% 体积:330*246*60mm(不含底座支架)
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
Agenda
–Business trends –Addressing today’s data center challenges –Use cases –HP X9000 portfolio
•
Converged Infrastructure
X9000 feature details
2
cooling Supporting infrastructure Availability Maintenance
– On-demand expansion required
• • • •
Need very large, single namespace Grow performance and/or capacity No performance bottlenecks No forklift upgrades
– Scale-out NAS online
• • • • •
Up to 16 PB single name space Grow performance &/or capacity online No forklift upgrades Performance is always optimized Eliminate performance bottlenecks
Digital Media
Archiving Digital CCTV Cloud Collaboration
Virtualization
4
1
Enterprise Strategy Group Research Report, Digital Archiving Survey, November 2007
For every dollar spent on storage infrastructure . . . Power & $.50
$2 $6
IT Exists to Support the Business…Right?
$8
70% captive in operations and maintenance • Proprietary legacy architectures • Management complexity • Sprawl
Thousands of render nodes (servers) Accessing millions of files Low performance stifles productivity Silos of storage complicate sharing
Data processing & analysis
13
High perf. storage
Information archive
Three separate namespaces
Solution: Massively Scalable, Tiered HP StorageWorks Solutions X9000 Network Storage Systems
• Downtime when scaling, silos
• As capacity grows, hotspots develop
• Too expensive, too slow, missing features
Cost Containment
6
• In th ratio worse
15
Problem: Storage Performance Limits New M&E production Productivity techniques require concurrent access to 1,000’s of
files
− New creation process
• • • •
5
Storage Shipments by Type (EB)
Source: ESG: Unstructured Data in 2010: Trends to Watch
Unstructured Data Presents Needs and Challenges
Massive Scalability Performance that grows with capacity Management of large data sets
“Only [HP X9000 software] puts together such massive levels of cost savings, performance, manageability, and scalability…” -Taneja Group
10
Common Scale-out NAS Applications
Life Sciences
ESG: “…the journey to a new model has begun”
“Unstructured, file-based data will continue to grow at a blistering pace in 2010...” “IT managers are cautious and resistant to change…especially in storage. But make no mistake: we will see change in how we store data.” “…users are backing away from tactical savings and budget cuts and looking for opportunities to spend ? capital dollars to realize long term operational savings.” “…the journey to a new model has begun.”
High Capacity
Financial Records Billing Records Content Delivery Network Digital Asset Library Seismic Data Patient Records Archival
11
Massive scalability with tiers of storage
8
HP X9000 Network Storage Systems
Common use cases that span industries
9
Common use cases that span industries
1. Massive Scalability with tiers of storage 2. Concurrent Access to many small files 3. Automated Data Movement
Businesses are facing massive scalability challenges
12
Problem: Storage Must Constantly Grow
New technology generates data faster with more granularity
HP StorageWorks X9000 Network Storage System
Scalable storage optimized for file serving
Name -Title Date
1
©2010 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice
FC/iSCSI SAN
43.2TB
Performance optimized
192TB
Capacity optimized
Existing SAN / Legacy Storage
7
1.312PB
Extreme density
How HP Addresses Unstructured Needs
Cost Effective
Single Namespace
14
Concurrent access to 1,000’s of files
Performance challenges with unstructured data – an extreme example from Media and Entertainment
Forklift Upgrade Bottleneck
– Must support multiple tiers
• • •
Performance for critical data analysis Cost-effective archive Must be simple to manage
Bottleneck
3
Business innovation throttled to 30% • Limited money for strategic improvements • Delays in innovation • Loss of time, effort, opportunity
Source: HP research
The Need
Manageable growth
The Solution
Manage many as one
HP Delivers
Largest single namespace Industry-standard, scale-out architecture Non-disruptive, automatic re-balancer Policy based tiering Continuous parallel replication balanced across modules All-inclusive feature-set