【SANGFOR - template - IMD topology template

合集下载

Oracle Banking APIs 补丁集发布版本22.2.1.0.0文件上传报告配置指南说明书

Oracle Banking APIs 补丁集发布版本22.2.1.0.0文件上传报告配置指南说明书

File Upload Report Configuration GuideOracle Banking APIsPatchset Release 22.2.1.0.0Part No. F72988-01May 2023File Upload Report Configuration GuideMay 2023Oracle Financial Services Software LimitedOracle ParkOff Western Express HighwayGoregaon (East)Mumbai, Maharashtra 400 063IndiaWorldwide Inquiries:Phone: +91 22 6718 3000Fax:+91 22 6718 3001/financialservices/Copyright © 2006, 2022, Oracle and/or its affiliates. All rights reserved.Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are “commercial computer software” pursuant to the applic able Federal Acquisition Regulation and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs. No other rights are granted to the U.S. Government.This software or hardware is developed for general use in a variety of information management applications. It is not developed or intended for use in any inherently dangerous applications, including applications that may create a risk of personal injury. If you use this software or hardware in dangerous applications, then you shall be responsible to take all appropriate failsafe, backup, redundancy, and other measures to ensure its safe use. Oracle Corporation and its affiliates disclaim any liability for any damages caused by use of this software or hardware in dangerous applications.This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited.The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing.This software or hardware and documentation may provide access to or information on content, products and services from third parties. Oracle Corporation and its affiliates are not responsible for and expressly disclaim all warranties of any kind with respect to third-party content, products, and services. Oracle Corporation and its affiliates will not be responsible for any loss, costs, or damages incurred due to your access to or use of third-party content, products, or services.Table of Contents1.Preface .............................................................................................................................................. 1–1 1.1Intended Audience ...................................................................................................................... 1–1 1.2Documentation Accessibility ....................................................................................................... 1–1 1.3Access to Oracle Support ........................................................................................................... 1–1 1.4Structure ..................................................................................................................................... 1–11.5Related Information Sources ...................................................................................................... 1–12.File Uploads ...................................................................................................................................... 2–1 2.1OutsideIn (For MS Excel processing) ......................................................................................... 2–1 2.2Configuration for storing key for decrypting uploaded files and creating encrypted response files2–22.3Using Enrichers in File Uploads ................................................................................................. 2–33.Reports ............................................................................................................................................. 3–1 3.1Reports – Internal Report Engine ............................................................................................... 3–11. Preface 1.1 Intended AudienceThis document is intended for the following audience:∙Customers∙Partners1.2 Documentation AccessibilityFor information about Oracle's commitment to accessibility, visit the Oracle Accessibility Program website at /pls/topic/lookup?ctx=acc&id=docacc.1.3 Access to Oracle SupportOracle customers have access to electronic support through My Oracle Support. For information, visit/pls/topic/lookup?ctx=acc&id=info or visit/pls/topic/lookup?ctx=acc&id=trs if you are hearing impaired.1.4 StructureThis manual is organized into the following categories:Preface gives information on the intended audience. It also describes the overall structure of the User Manual.The subsequent chapters describe following details:∙Introduction∙Preferences & Database∙Configuration / Installation.1.5 Related Information SourcesFor more information on Oracle Banking APIs Patchset Release 22.2.1.0.0, refer to the following documents:∙Oracle Banking APIs Installation Manuals∙Oracle Banking APIs Licensing Guide2. File Uploads 2.1 OutsideIn (For MS Excel processing)Outside Inn - This is used for parsing XLS, XLSX in file uploads module. This library is not shipped with OBAPI but needs to be downloaded from below link for required platform (OS on which app server is running)/technetwork/middleware/webcenter/content/oit-dl-otn-097435.htmlSearch Export – (Refer Pre requisite installation document for version)Unzip the downloaded file and copy all contents of ‘redist’ folder to config/outsidein/<os>directoryThen copy all contents (except jar & sh files) of ‘sdk/demo’ directory to config/outsidein/<os>Use sx.cfg (replace/merge contents if required) shipped in installer from folderconfig/outsidein/<os>Confirm/update path select * from digx_fw_config_all_b where prop_id ='OUTSIDE_IN_SDK'Default config/outsidein/linux64Grant 777 privileges for OutsideIn directory2.2 Configuration for storing key for decrypting uploaded files and creating encrypted response filesThe key used for file decryption by default decryptor is stored in database in digx_fw_config_all_b with prop_id as ‘ENCRYPTION_KEY’. If this is to be stored in WLS connector update the property as belowupdate digx_fw_config_all_b set prop_value='KEY_STORE' whereprop_id='ENCRYPTION_KEY_LOCATION';Update the encryption key in connector as below –Click New > Select ra/DIGXConnectorFILEUPLOAD > Next > Select Default UserIn password field, enter the encryption key2.3 Using Enrichers in File Uploads(For custom defined templates only, not required for out of box templates)∙Enrichers are used to enrich or fetch a value for a given field. Let’s say the field is Debit Account Id and enricher is Account Currency, so it means that the currency for that debit account Idneeds to be fetched or enriched.∙Enricher can have enricher arguments. These arguments are passed when the enricher is invoked.∙Enrichers are of 2 typesUpload File EnrichersStatic arguments (enricherArgs) – Value is passed directly from template to enricher as label stringDynamic arguments (enricherDynArgs) – Value is derived from a previous field of the record.∙Extract (Response) File EnrichersHow Enrichers are used in File Upload ?∙In File Upload XML template, the field which will enrich other fields must have ‘enricher’ attribute. This attribute must not be specified for the fields which would be enriched.∙The value of this ‘enricher’ attribute is the ‘ENRICHMENT_ID’ which is a column in table ‘DIGX_FW_ENRICHMENTS_B’. Currently OBAPI support only Java enrichers. Enrichers canbe in any package but must implement the ‘IEnrichment’ interface.∙On the basis of the ‘enricher’ attribute value mapping is done from table ‘DIGX_FW_ENRICHMENTS_B’ and the corresponding ‘ENRICHMENT_VALUE’ column valueis fetched and enrich() method of the specified Java class is invokedEg.∙Refer to the following figure of File Template : InternalFT.xml .Static EnrichersIn above template, the field name ‘debitAccountId’ has a enricher ‘ACCTCURR’ with no enricherArgs. In this case ‘DIGX_FW_ENRICHMENTS_B’ will be queried and search for ‘ACCTCURR’ and ‘AccountCurrencyEnricher’ class is invoked.This enricher derives the debitAccountCurr. Hence this attribute must be present in the record DTOwith its setters defined.The field name ‘valueDate’ has static enricherArgs ‘dd-MM-yyyy’ meaning that the date has to be specifically in ‘dd-MM-yyyy’ f ormat. This value is simply available to the enricher for processing purpose. This enricher does not add any new field but simply modifies the value of the current field.Dynamic EnrichersIf ‘enricherDynArgs’ is specifiedEg. enricherDynArgs=”beneId~beneName” on beneficiary address field, the parser simply invokes getters on beneId and beneName fields and passes the values to the enricher in a map. It should be noted that these fields must be defined previously/above the beneficiary address field, so that parser has already completed the setter operation.<Field name=" beneId"/><Field name=" beneName "/><Field name="beneAddr" enricher="ADDRESSENRICHER" enricherDynArgs=" beneId~beneName "/>Eg.Extract (Response) File EnrichersEnrichers can be added to response file templates. The enricher class is invoked in the same way as upload templates. Eg, in above case, localized error message need to be added to extracts from ‘errCode’. Extract enrichers do not support dynamic argumentsFile Copy ConfigurationIn case of FCR/OBPM as host, for file level uploads in OBAPI, the files are generated in FCR/OBPM formats after approval at OBAPI end is complete. These files are stored in a directory on OBAPI server. For record level, service is used same as of single screen transactions.FCR configs1. Set this path as the value for prop_id = ‘FCORE_HANDOFF_FILE_PATH’ in theDIGX_FW_CONFIG_VAR_B table against the required entity (Empty folder with fullpermission).2. Copying the file to host system using FTP (to rjsin folder)Provide the values for the below properties in the MSTPROPERTIES table of host schema:OBPM configs1. Set this path as the value for prop_id = ‘UBS_HANDOFF_FILE_PATH’ in theDIGX_FW_CONFIG_VAR_B table against th`e required entity (Empty folder with fullpermission).2. Copying the file to host system using FTPProvide the values for the below properties in the MSTPROPERTIES table of host schema:3. OBPM file upload Restful service configurationsa. Set the value of the host IP and Port for which the REST API is to be invoked against theprop_id = ‘HOST_IP_UBSFU’ and‘HOST_PORT_UBSFU’ in theDIGX_FW_CONFIG_VAR_B table against the required entity.b. Provide the values for the below properties in the MSTPROPERTIES table of hostschema:∙propname = ‘FU_FILETYPE’ - the type of file.∙propname = ‘FU_HOSTCODE’ - the host code.∙propname = ‘FU_RESTFILEPATH’ - the filePath provided in the rest payload as on OBPM machine.∙propname = ‘FU_SRCCODE’ - the source code .∙propname = ‘FU_TXNBRANCH’ - the transaction branch code.4. Debtor BIC FI Configurationa. Provision to set Debtor BIC has been provided at entity level.b. The same can be configured in the following path by System Administrator user:i. Toggle menu > Configuration > System Configuration > Click on Continue >Select Entity > Dynamic Module Tab > File UploadHomeReports3. ReportsReports in OBAPI can be used with Internal Reports Engine or Oracle BI.3.1 Reports – Internal Report EngineIn installer scripts, all reports point to Internal report engine, no additional configuration is required.Note - A8_C2_PENDING_APPROVALS works only with BI.For API Summary reports, internal engine works for maximum 500 records only. For higher load BI is recommended.Home。

NuMicro N9H30系列开发板用户手册说明书

NuMicro N9H30系列开发板用户手册说明书

NuMicro®FamilyArm® ARM926EJ-S BasedNuMaker-HMI-N9H30User ManualEvaluation Board for NuMicro® N9H30 SeriesNUMAKER-HMI-N9H30 USER MANUALThe information described in this document is the exclusive intellectual property ofNuvoton Technology Corporation and shall not be reproduced without permission from Nuvoton.Nuvoton is providing this document only for reference purposes of NuMicro microcontroller andmicroprocessor based system design. Nuvoton assumes no responsibility for errors or omissions.All data and specifications are subject to change without notice.For additional information or questions, please contact: Nuvoton Technology Corporation.Table of Contents1OVERVIEW (5)1.1Features (7)1.1.1NuMaker-N9H30 Main Board Features (7)1.1.2NuDesign-TFT-LCD7 Extension Board Features (7)1.2Supporting Resources (8)2NUMAKER-HMI-N9H30 HARDWARE CONFIGURATION (9)2.1NuMaker-N9H30 Board - Front View (9)2.2NuMaker-N9H30 Board - Rear View (14)2.3NuDesign-TFT-LCD7 - Front View (20)2.4NuDesign-TFT-LCD7 - Rear View (21)2.5NuMaker-N9H30 and NuDesign-TFT-LCD7 PCB Placement (22)3NUMAKER-N9H30 AND NUDESIGN-TFT-LCD7 SCHEMATICS (24)3.1NuMaker-N9H30 - GPIO List Circuit (24)3.2NuMaker-N9H30 - System Block Circuit (25)3.3NuMaker-N9H30 - Power Circuit (26)3.4NuMaker-N9H30 - N9H30F61IEC Circuit (27)3.5NuMaker-N9H30 - Setting, ICE, RS-232_0, Key Circuit (28)NUMAKER-HMI-N9H30 USER MANUAL3.6NuMaker-N9H30 - Memory Circuit (29)3.7NuMaker-N9H30 - I2S, I2C_0, RS-485_6 Circuit (30)3.8NuMaker-N9H30 - RS-232_2 Circuit (31)3.9NuMaker-N9H30 - LCD Circuit (32)3.10NuMaker-N9H30 - CMOS Sensor, I2C_1, CAN_0 Circuit (33)3.11NuMaker-N9H30 - RMII_0_PF Circuit (34)3.12NuMaker-N9H30 - RMII_1_PE Circuit (35)3.13NuMaker-N9H30 - USB Circuit (36)3.14NuDesign-TFT-LCD7 - TFT-LCD7 Circuit (37)4REVISION HISTORY (38)List of FiguresFigure 1-1 Front View of NuMaker-HMI-N9H30 Evaluation Board (5)Figure 1-2 Rear View of NuMaker-HMI-N9H30 Evaluation Board (6)Figure 2-1 Front View of NuMaker-N9H30 Board (9)Figure 2-2 Rear View of NuMaker-N9H30 Board (14)Figure 2-3 Front View of NuDesign-TFT-LCD7 Board (20)Figure 2-4 Rear View of NuDesign-TFT-LCD7 Board (21)Figure 2-5 Front View of NuMaker-N9H30 PCB Placement (22)Figure 2-6 Rear View of NuMaker-N9H30 PCB Placement (22)Figure 2-7 Front View of NuDesign-TFT-LCD7 PCB Placement (23)Figure 2-8 Rear View of NuDesign-TFT-LCD7 PCB Placement (23)Figure 3-1 GPIO List Circuit (24)Figure 3-2 System Block Circuit (25)Figure 3-3 Power Circuit (26)Figure 3-4 N9H30F61IEC Circuit (27)Figure 3-5 Setting, ICE, RS-232_0, Key Circuit (28)Figure 3-6 Memory Circuit (29)Figure 3-7 I2S, I2C_0, RS-486_6 Circuit (30)Figure 3-8 RS-232_2 Circuit (31)Figure 3-9 LCD Circuit (32)NUMAKER-HMI-N9H30 USER MANUAL Figure 3-10 CMOS Sensor, I2C_1, CAN_0 Circuit (33)Figure 3-11 RMII_0_PF Circuit (34)Figure 3-12 RMII_1_PE Circuit (35)Figure 3-13 USB Circuit (36)Figure 3-14 TFT-LCD7 Circuit (37)List of TablesTable 2-1 LCD Panel Combination Connector (CON8) Pin Function (11)Table 2-2 Three Sets of Indication LED Functions (12)Table 2-3 Six Sets of User SW, Key Matrix Functions (12)Table 2-4 CMOS Sensor Connector (CON10) Function (13)Table 2-5 JTAG ICE Interface (J2) Function (14)Table 2-6 Expand Port (CON7) Function (16)Table 2-7 UART0 (J3) Function (16)Table 2-8 UART2 (J6) Function (16)Table 2-9 RS-485_6 (SW6~8) Function (17)Table 2-10 Power on Setting (SW4) Function (17)Table 2-11 Power on Setting (S2) Function (17)Table 2-12 Power on Setting (S3) Function (17)Table 2-13 Power on Setting (S4) Function (17)Table 2-14 Power on Setting (S5) Function (17)Table 2-15 Power on Setting (S7/S6) Function (18)Table 2-16 Power on Setting (S9/S8) Function (18)Table 2-17 CMOS Sensor Connector (CON9) Function (19)Table 2-18 CAN_0 (SW9~10) Function (19)NUMAKER-HMI-N9H30 USER MANUAL1 OVERVIEWThe NuMaker-HMI-N9H30 is an evaluation board for GUI application development. The NuMaker-HMI-N9H30 consists of two parts: a NuMaker-N9H30 main board and a NuDesign-TFT-LCD7 extensionboard. The NuMaker-HMI-N9H30 is designed for project evaluation, prototype development andvalidation with HMI (Human Machine Interface) function.The NuMaker-HMI-N9H30 integrates touchscreen display, voice input/output, rich serial port serviceand I/O interface, providing multiple external storage methods.The NuDesign-TFT-LCD7 can be plugged into the main board via the DIN_32x2 extension connector.The NuDesign-TFT-LCD7 includes one 7” LCD which the resolution is 800x480 with RGB-24bits andembedded the 4-wires resistive type touch panel.Figure 1-1 Front View of NuMaker-HMI-N9H30 Evaluation BoardNUMAKER-HMI-N9H30 USER MANUAL Figure 1-2 Rear View of NuMaker-HMI-N9H30 Evaluation Board1.1 Features1.1.1 NuMaker-N9H30 Main Board Features●N9H30F61IEC chip: LQFP216 pin MCP package with DDR (64 MB)●SPI Flash using W25Q256JVEQ (32 MB) booting with quad mode or storage memory●NAND Flash using W29N01HVSINA (128 MB) booting or storage memory●One Micro-SD/TF card slot served either as a SD memory card for data storage or SDIO(Wi-Fi) device●Two sets of COM ports:–One DB9 RS-232 port with UART_0 used 75C3232E transceiver chip can be servedfor function debug and system development.–One DB9 RS-232 port with UART_2 used 75C3232E transceiver chip for userapplication●22 GPIO expansion ports, including seven sets of UART functions●JTAG interface provided for software development●Microphone input and Earphone/Speaker output with 24-bit stereo audio codec(NAU88C22) for I2S interfaces●Six sets of user-configurable push button keys●Three sets of LEDs for status indication●Provides SN65HVD230 transceiver chip for CAN bus communication●Provides MAX3485 transceiver chip for RS-485 device connection●One buzzer device for program applicationNUMAKER-HMI-N9H30 USER MANUAL●Two sets of RJ45 ports with Ethernet 10/100 Mbps MAC used IP101GR PHY chip●USB_0 that can be used as Device/HOST and USB_1 that can be used as HOSTsupports pen drives, keyboards, mouse and printers●Provides over-voltage and over current protection used APL3211A chip●Retain RTC battery socket for CR2032 type and ADC0 detect battery voltage●System power could be supplied by DC-5V adaptor or USB VBUS1.1.2 NuDesign-TFT-LCD7 Extension Board Features●7” resolution 800x480 4-wire resistive touch panel for 24-bits RGB888 interface●DIN_32x2 extension connector1.2 Supporting ResourcesFor sample codes and introduction about NuMaker-N9H30, please refer to N9H30 BSP:https:///products/gui-solution/gui-platform/numaker-hmi-n9h30/?group=Software&tab=2Visit NuForum for further discussion about the NuMaker-HMI-N9H30:/viewforum.php?f=31 NUMAKER-HMI-N9H30 USER MANUALNUMAKER-HMI-N9H30 USER MANUAL2 NUMAKER-HMI-N9H30 HARDWARE CONFIGURATION2.1 NuMaker-N9H30 Board - Front View Combination Connector (CON8)6 set User SWs (K1~6)3set Indication LEDs (LED1~3)Power Supply Switch (SW_POWER1)Audio Codec(U10)Microphone(M1)NAND Flash(U9)RS-232 Transceiver(U6, U12)RS-485 Transceiver(U11)CAN Transceiver (U13)Figure 2-1 Front View of NuMaker-N9H30 BoardFigure 2-1 shows the main components and connectors from the front side of NuMaker-N9H30 board. The following lists components and connectors from the front view:NuMaker-N9H30 board and NuDesign-TFT-LCD7 board combination connector (CON8). This panel connector supports 4-/5-wire resistive touch or capacitance touch panel for 24-bits RGB888 interface.Connector GPIO pin of N9H30 FunctionCON8.1 - Power 3.3VCON8.2 - Power 3.3VCON8.3 GPD7 LCD_CSCON8.4 GPH3 LCD_BLENCON8.5 GPG9 LCD_DENCON8.7 GPG7 LCD_HSYNCCON8.8 GPG6 LCD_CLKCON8.9 GPD15 LCD_D23(R7)CON8.10 GPD14 LCD_D22(R6)CON8.11 GPD13 LCD_D21(R5)CON8.12 GPD12 LCD_D20(R4)CON8.13 GPD11 LCD_D19(R3)CON8.14 GPD10 LCD_D18(R2)CON8.15 GPD9 LCD_D17(R1)CON8.16 GPD8 LCD_D16(R0)CON8.17 GPA15 LCD_D15(G7)CON8.18 GPA14 LCD_D14(G6)CON8.19 GPA13 LCD_D13(G5)CON8.20 GPA12 LCD_D12(G4)CON8.21 GPA11 LCD_D11(G3)CON8.22 GPA10 LCD_D10(G2)CON8.23 GPA9 LCD_D9(G1) NUMAKER-HMI-N9H30 USER MANUALCON8.24 GPA8 LCD_D8(G0)CON8.25 GPA7 LCD_D7(B7)CON8.26 GPA6 LCD_D6(B6)CON8.27 GPA5 LCD_D5(B5)CON8.28 GPA4 LCD_D4(B4)CON8.29 GPA3 LCD_D3(B3)CON8.30 GPA2 LCD_D2(B2)CON8.31 GPA1 LCD_D1(B1)CON8.32 GPA0 LCD_D0(B0)CON8.33 - -CON8.34 - -CON8.35 - -CON8.36 - -CON8.37 GPB2 LCD_PWMCON8.39 - VSSCON8.40 - VSSCON8.41 ADC7 XPCON8.42 ADC3 VsenCON8.43 ADC6 XMCON8.44 ADC4 YMCON8.45 - -CON8.46 ADC5 YPCON8.47 - VSSCON8.48 - VSSCON8.49 GPG0 I2C0_CCON8.50 GPG1 I2C0_DCON8.51 GPG5 TOUCH_INTCON8.52 - -CON8.53 - -CON8.54 - -CON8.55 - -NUMAKER-HMI-N9H30 USER MANUAL CON8.56 - -CON8.57 - -CON8.58 - -CON8.59 - VSSCON8.60 - VSSCON8.61 - -CON8.62 - -CON8.63 - Power 5VCON8.64 - Power 5VTable 2-1 LCD Panel Combination Connector (CON8) Pin Function●Power supply switch (SW_POWER1): System will be powered on if the SW_POWER1button is pressed●Three sets of indication LEDs:LED Color DescriptionsLED1 Red The system power will beterminated and LED1 lightingwhen the input voltage exceeds5.7V or the current exceeds 2A.LED2 Green Power normal state.LED3 Green Controlled by GPH2 pin Table 2-2 Three Sets of Indication LED Functions●Six sets of user SW, Key Matrix for user definitionKey GPIO pin of N9H30 FunctionK1 GPF10 Row0 GPB4 Col0K2 GPF10 Row0 GPB5 Col1K3 GPE15 Row1 GPB4 Col0K4 GPE15 Row1 GPB5 Col1K5 GPE14 Row2 GPB4 Col0K6GPE14 Row2GPB5 Col1 Table 2-3 Six Sets of User SW, Key Matrix Functions●NAND Flash (128 MB) with Winbond W29N01HVS1NA (U9)●Microphone (M1): Through Nuvoton NAU88C22 chip sound input●Audio CODEC chip (U10): Nuvoton NAU88C22 chip connected to N9H30 using I2Sinterface–SW6/SW7/SW8: 1-2 short for RS-485_6 function and connected to 2P terminal (CON5and J5)–SW6/SW7/SW8: 2-3 short for I2S function and connected to NAU88C22 (U10).●CMOS Sensor connector (CON10, SW9~10)–SW9~10: 1-2 short for CAN_0 function and connected to 2P terminal (CON11)–SW9~10: 2-3 short for CMOS sensor function and connected to CMOS sensorconnector (CON10)Connector GPIO pin of N9H30 FunctionCON10.1 - VSSCON10.2 - VSSNUMAKER-HMI-N9H30 USER MANUALCON10.3 - Power 3.3VCON10.4 - Power 3.3VCON10.5 - -CON10.6 - -CON10.7 GPI4 S_PCLKCON10.8 GPI3 S_CLKCON10.9 GPI8 S_D0CON10.10 GPI9 S_D1CON10.11 GPI10 S_D2CON10.12 GPI11 S_D3CON10.13 GPI12 S_D4CON10.14 GPI13 S_D5CON10.15 GPI14 S_D6CON10.16 GPI15 S_D7CON10.17 GPI6 S_VSYNCCON10.18 GPI5 S_HSYNCCON10.19 GPI0 S_PWDNNUMAKER-HMI-N9H30 USER MANUAL CON10.20 GPI7 S_nRSTCON10.21 GPG2 I2C1_CCON10.22 GPG3 I2C1_DCON10.23 - VSSCON10.24 - VSSTable 2-4 CMOS Sensor Connector (CON10) FunctionNUMAKER-HMI-N9H30 USER MANUAL2.2NuMaker-N9H30 Board - Rear View5V In (CON1)RS-232 DB9 (CON2,CON6)Expand Port (CON7)Speaker Output (J4)Earphone Output (CON4)Buzzer (BZ1)System ResetSW (SW5)SPI Flash (U7,U8)JTAG ICE (J2)Power ProtectionIC (U1)N9H30F61IEC (U5)Micro SD Slot (CON3)RJ45 (CON12, CON13)USB1 HOST (CON15)USB0 Device/Host (CON14)CAN_0 Terminal (CON11)CMOS Sensor Connector (CON9)Power On Setting(SW4, S2~S9)RS-485_6 Terminal (CON5)RTC Battery(BT1)RMII PHY (U14,U16)Figure 2-2 Rear View of NuMaker-N9H30 BoardFigure 2-2 shows the main components and connectors from the rear side of NuMaker-N9H30 board. The following lists components and connectors from the rear view:● +5V In (CON1): Power adaptor 5V input ●JTAG ICE interface (J2) ConnectorGPIO pin of N9H30Function J2.1 - Power 3.3V J2.2 GPJ4 nTRST J2.3 GPJ2 TDI J2.4 GPJ1 TMS J2.5 GPJ0 TCK J2.6 - VSS J2.7 GPJ3 TD0 J2.8-RESETTable 2-5 JTAG ICE Interface (J2) Function●SPI Flash (32 MB) with Winbond W25Q256JVEQ (U7); only one (U7 or U8) SPI Flashcan be used●System Reset (SW5): System will be reset if the SW5 button is pressed●Buzzer (BZ1): Control by GPB3 pin of N9H30●Speaker output (J4): Through the NAU88C22 chip sound output●Earphone output (CON4): Through the NAU88C22 chip sound output●Expand port for user use (CON7):Connector GPIO pin of N9H30 FunctionCON7.1 - Power 3.3VCON7.2 - Power 3.3VCON7.3 GPE12 UART3_TXDCON7.4 GPH4 UART1_TXDCON7.5 GPE13 UART3_RXDCON7.6 GPH5 UART1_RXDCON7.7 GPB0 UART5_TXDCON7.8 GPH6 UART1_RTSCON7.9 GPB1 UART5_RXDCON7.10 GPH7 UART1_CTSCON7.11 GPI1 UART7_TXDNUMAKER-HMI-N9H30 USER MANUAL CON7.12 GPH8 UART4_TXDCON7.13 GPI2 UART7_RXDCON7.14 GPH9 UART4_RXDCON7.15 - -CON7.16 GPH10 UART4_RTSCON7.17 - -CON7.18 GPH11 UART4_CTSCON7.19 - VSSCON7.20 - VSSCON7.21 GPB12 UART10_TXDCON7.22 GPH12 UART8_TXDCON7.23 GPB13 UART10_RXDCON7.24 GPH13 UART8_RXDCON7.25 GPB14 UART10_RTSCON7.26 GPH14 UART8_RTSCON7.27 GPB15 UART10_CTSCON7.28 GPH15 UART8_CTSCON7.29 - Power 5VCON7.30 - Power 5VTable 2-6 Expand Port (CON7) Function●UART0 selection (CON2, J3):–RS-232_0 function and connected to DB9 female (CON2) for debug message output.–GPE0/GPE1 connected to 2P terminal (J3).Connector GPIO pin of N9H30 Function J3.1 GPE1 UART0_RXDJ3.2 GPE0 UART0_TXDTable 2-7 UART0 (J3) Function●UART2 selection (CON6, J6):–RS-232_2 function and connected to DB9 female (CON6) for debug message output –GPF11~14 connected to 4P terminal (J6)Connector GPIO pin of N9H30 Function J6.1 GPF11 UART2_TXDJ6.2 GPF12 UART2_RXDJ6.3 GPF13 UART2_RTSJ6.4 GPF14 UART2_CTSTable 2-8 UART2 (J6) Function●RS-485_6 selection (CON5, J5, SW6~8):–SW6~8: 1-2 short for RS-485_6 function and connected to 2P terminal (CON5 and J5) –SW6~8: 2-3 short for I2S function and connected to NAU88C22 (U10)Connector GPIO pin of N9H30 FunctionSW6:1-2 shortGPG11 RS-485_6_DISW6:2-3 short I2S_DOSW7:1-2 shortGPG12 RS-485_6_ROSW7:2-3 short I2S_DISW8:1-2 shortGPG13 RS-485_6_ENBSW8:2-3 short I2S_BCLKNUMAKER-HMI-N9H30 USER MANUALTable 2-9 RS-485_6 (SW6~8) FunctionPower on setting (SW4, S2~9).SW State FunctionSW4.2/SW4.1 ON/ON Boot from USB SW4.2/SW4.1 ON/OFF Boot from eMMC SW4.2/SW4.1 OFF/ON Boot from NAND Flash SW4.2/SW4.1 OFF/OFF Boot from SPI Flash Table 2-10 Power on Setting (SW4) FunctionSW State FunctionS2 Short System clock from 12MHzcrystalS2 Open System clock from UPLL output Table 2-11 Power on Setting (S2) FunctionSW State FunctionS3 Short Watchdog Timer OFFS3 Open Watchdog Timer ON Table 2-12 Power on Setting (S3) FunctionSW State FunctionS4 Short GPJ[4:0] used as GPIO pinS4Open GPJ[4:0] used as JTAG ICEinterfaceTable 2-13 Power on Setting (S4) FunctionSW State FunctionS5 Short UART0 debug message ONS5 Open UART0 debug message OFFTable 2-14 Power on Setting (S5) FunctionSW State FunctionS7/S6 Short/Short NAND Flash page size 2KBS7/S6 Short/Open NAND Flash page size 4KBS7/S6 Open/Short NAND Flash page size 8KBNUMAKER-HMI-N9H30 USER MANUALS7/S6 Open/Open IgnoreTable 2-15 Power on Setting (S7/S6) FunctionSW State FunctionS9/S8 Short/Short NAND Flash ECC type BCH T12S9/S8 Short/Open NAND Flash ECC type BCH T15S9/S8 Open/Short NAND Flash ECC type BCH T24S9/S8 Open/Open IgnoreTable 2-16 Power on Setting (S9/S8) FunctionCMOS Sensor connector (CON9, SW9~10)–SW9~10: 1-2 short for CAN_0 function and connected to 2P terminal (CON11).–SW9~10: 2-3 short for CMOS sensor function and connected to CMOS sensorconnector (CON9).Connector GPIO pin of N9H30 FunctionCON9.1 - VSSCON9.2 - VSSCON9.3 - Power 3.3VCON9.4 - Power 3.3V NUMAKER-HMI-N9H30 USER MANUALCON9.5 - -CON9.6 - -CON9.7 GPI4 S_PCLKCON9.8 GPI3 S_CLKCON9.9 GPI8 S_D0CON9.10 GPI9 S_D1CON9.11 GPI10 S_D2CON9.12 GPI11 S_D3CON9.13 GPI12 S_D4CON9.14 GPI13 S_D5CON9.15 GPI14 S_D6CON9.16 GPI15 S_D7CON9.17 GPI6 S_VSYNCCON9.18 GPI5 S_HSYNCCON9.19 GPI0 S_PWDNCON9.20 GPI7 S_nRSTCON9.21 GPG2 I2C1_CCON9.22 GPG3 I2C1_DCON9.23 - VSSCON9.24 - VSSTable 2-17 CMOS Sensor Connector (CON9) Function●CAN_0 Selection (CON11, SW9~10):–SW9~10: 1-2 short for CAN_0 function and connected to 2P terminal (CON11) –SW9~10: 2-3 short for CMOS sensor function and connected to CMOS sensor connector (CON9, CON10)SW GPIO pin of N9H30 FunctionSW9:1-2 shortGPI3 CAN_0_RXDSW9:2-3 short S_CLKSW10:1-2 shortGPI4 CAN_0_TXDSW10:2-3 short S_PCLKTable 2-18 CAN_0 (SW9~10) Function●USB0 Device/HOST Micro-AB connector (CON14), where CON14 pin4 ID=1 is Device,ID=0 is HOST●USB1 for USB HOST with Type-A connector (CON15)●RJ45_0 connector with LED indicator (CON12), RMII PHY with IP101GR (U14)●RJ45_1 connector with LED indicator (CON13), RMII PHY with IP101GR (U16)●Micro-SD/TF card slot (CON3)●SOC CPU: Nuvoton N9H30F61IEC (U5)●Battery power for RTC 3.3V powered (BT1, J1), can detect voltage by ADC0●RTC power has 3 sources:–Share with 3.3V I/O power–Battery socket for CR2032 (BT1)–External connector (J1)●Board version 2.1NUMAKER-HMI-N9H30 USER MANUAL2.3 NuDesign-TFT-LCD7 -Front ViewFigure 2-3 Front View of NuDesign-TFT-LCD7 BoardFigure 2-3 shows the main components and connectors from the Front side of NuDesign-TFT-LCD7board.7” resolution 800x480 4-W resistive touch panel for 24-bits RGB888 interface2.4 NuDesign-TFT-LCD7 -Rear ViewFigure 2-4 Rear View of NuDesign-TFT-LCD7 BoardFigure 2-4 shows the main components and connectors from the rear side of NuDesign-TFT-LCD7board.NuMaker-N9H30 and NuDesign-TFT-LCD7 combination connector (CON1).NUMAKER-HMI-N9H30 USER MANUAL 2.5 NuMaker-N9H30 and NuDesign-TFT-LCD7 PCB PlacementFigure 2-5 Front View of NuMaker-N9H30 PCB PlacementFigure 2-6 Rear View of NuMaker-N9H30 PCB PlacementNUMAKER-HMI-N9H30 USER MANUALFigure 2-7 Front View of NuDesign-TFT-LCD7 PCB PlacementFigure 2-8 Rear View of NuDesign-TFT-LCD7 PCB Placement3 NUMAKER-N9H30 AND NUDESIGN-TFT-LCD7 SCHEMATICS3.1 NuMaker-N9H30 - GPIO List CircuitFigure 3-1 shows the N9H30F61IEC GPIO list circuit.Figure 3-1 GPIO List Circuit NUMAKER-HMI-N9H30 USER MANUAL3.2 NuMaker-N9H30 - System Block CircuitFigure 3-2 shows the System Block Circuit.NUMAKER-HMI-N9H30 USER MANUALFigure 3-2 System Block Circuit3.3 NuMaker-N9H30 - Power CircuitFigure 3-3 shows the Power Circuit.NUMAKER-HMI-N9H30 USER MANUALFigure 3-3 Power Circuit3.4 NuMaker-N9H30 - N9H30F61IEC CircuitFigure 3-4 shows the N9H30F61IEC Circuit.Figure 3-4 N9H30F61IEC CircuitNUMAKER-HMI-N9H30 USER MANUAL3.5 NuMaker-N9H30 - Setting, ICE, RS-232_0, Key CircuitFigure 3-5 shows the Setting, ICE, RS-232_0, Key Circuit.NUMAKER-HMI-N9H30 USER MANUALFigure 3-5 Setting, ICE, RS-232_0, Key Circuit3.6 NuMaker-N9H30 - Memory CircuitFigure 3-6 shows the Memory Circuit.NUMAKER-HMI-N9H30 USER MANUALFigure 3-6 Memory Circuit3.7 NuMaker-N9H30 - I2S, I2C_0, RS-485_6 CircuitFigure 3-7 shows the I2S, I2C_0, RS-486_6 Circuit.NUMAKER-HMI-N9H30 USER MANUALFigure 3-7 I2S, I2C_0, RS-486_6 Circuit3.8 NuMaker-N9H30 - RS-232_2 CircuitFigure 3-8 shows the RS-232_2 Circuit.NUMAKER-HMI-N9H30 USER MANUALFigure 3-8 RS-232_2 Circuit3.9 NuMaker-N9H30 - LCD CircuitFigure 3-9 shows the LCD Circuit.NUMAKER-HMI-N9H30 USER MANUALFigure 3-9 LCD Circuit3.10 NuMaker-N9H30 - CMOS Sensor, I2C_1, CAN_0 CircuitFigure 3-10 shows the CMOS Sensor,I2C_1, CAN_0 Circuit.NUMAKER-HMI-N9H30 USER MANUALFigure 3-10 CMOS Sensor, I2C_1, CAN_0 Circuit3.11 NuMaker-N9H30 - RMII_0_PF CircuitFigure 3-11 shows the RMII_0_RF Circuit.NUMAKER-HMI-N9H30 USER MANUALFigure 3-11 RMII_0_PF Circuit3.12 NuMaker-N9H30 - RMII_1_PE CircuitFigure 3-12 shows the RMII_1_PE Circuit.NUMAKER-HMI-N9H30 USER MANUALFigure 3-12 RMII_1_PE Circuit3.13 NuMaker-N9H30 - USB CircuitFigure 3-13 shows the USB Circuit.NUMAKER-HMI-N9H30 USER MANUALFigure 3-13 USB Circuit3.14 NuDesign-TFT-LCD7 - TFT-LCD7 CircuitFigure 3-14 shows the TFT-LCD7 Circuit.Figure 3-14 TFT-LCD7 CircuitNUMAKER-HMI-N9H30 USER MANUAL4 REVISION HISTORYDate Revision Description2022.03.24 1.00 Initial version NUMAKER-HMI-N9H30 USER MANUALNUMAKER-HMI-N9H30 USER MANUALImportant NoticeNuvoton Products are neither intended nor warranted for usage in systems or equipment, anymalfunction or failure of which may cause loss of human life, bodily injury or severe propertydamage. Such applications are deemed, “Insecure Usage”.Insecure usage includes, but is not limited to: equipment for surgical implementation, atomicenergy control instruments, airplane or spaceship instruments, the control or operation ofdynamic, brake or safety systems designed for vehicular use, traffic signal instruments, all typesof safety devices, and other applications intended to support or sustain life.All Insecure Usage shall be made at customer’s risk, and in the event that third parties lay claimsto Nuvoton as a result of customer’s Insecure Usage, custome r shall indemnify the damagesand liabilities thus incurred by Nuvoton.。

甲骨文医疗行业数据库及灾备解决方案介绍

甲骨文医疗行业数据库及灾备解决方案介绍

Sybase ASE
Teradata Enscribe SQL/MP
SQL/MX
Ingres MySQL HP Neoview
– SQL/MX
所有ODBC兼容数据库
底层平台: Sun Solaris, IBM AIX, HP-UX, Linux, Windows NT, XP HP NonStop, HP TRU64, HP OpenVMS, IBM z/OS
Confidential – Oracle Restricted
Golden Gate TDM工作原理
Capture: 实时读取交易日志捕捉数据变化并可实现过滤. 队列文件: 暂存数据变化. 传输: 数据经过压缩和加密传送到目的地.
Delivery:执行所需的数据变化,然后将 数据变化提交到目的库.
12
Copyright © 2012, Oracle and/or its affiliates. All rights reserved.
Confidential – Oracle Restricted
Golden Gate TDM(交易数据管理)
GoldenGate TDM提供异构环境下交易数据的实时捕捉、变换、投递,主要是支持 异构数据库环境下的变化数据同步。
Confidential – Oracle Restricted
案例一:中华人民共和国海关总署
全国各地41个口岸H2000应用
网络
GoldenGate 双向复制
Oracle 9i RAC
Oracle 9i RAC
H2000生产库 GoldenGate 单向复制 决策支持库 GoldenGate 单向复制
存储、站点失效
– 硬件冗余

catia DMU官方经典教程一

catia DMU官方经典教程一

CATIA/ENOVIA TrainingCOPYRIGHT DASSAULT SYSTEMES 2002 Version 5 Release 9 June 2002D M U O p t i m i z e r D e t a i l e d S t e p sTable of ContentsNH90 Exercise (3)Step 1 (3)Step 2 (8)Step 3 (13)Step 4 (18)Step 5 (21)Step 6 (24)Step 7 (27)NH90 ExerciseStep 11. Compute Simplification▪Go to the DMU Optimizer workbench▪Open the CATProduct : CATDMO_NH90_Step1.CATProduct ▪Click on the Simplification iconThe Simplification dialog box appears:▪Select the NH90_linkage_rod_type-02▪Type an Accuracy of 3mm▪Click on the Preview button:The preview window appears:2. Save the Result as a CGR file▪Click on the Save button▪Select a directory and type a different name if you want ▪Click on the Save button of the Save As window The Simplification dialog box stays active3. Compute a multi-components Simplification▪Select others components like in the picture below (one by one or with a trap)▪Type an Accuracy of 5mm▪Click on the Preview buttonThe result is displayed:▪Save it as a CGR file like previously▪Click on the Close button4. Replace the Simplified components by the CGR file just created▪Remove these five components from the assembly▪Insert the CGR file of the Simplification in the product5. Save the product under another name▪Go to the menu File / Save As…▪Type a new name▪Click on SaveStep 26. Compute Silhouette▪Open the CATProduct : CATDMO_NH90_Step2-4.CATProduct▪Select the Silhouette View in the Named Views panel▪This viewpoint is the one, which will be used for the silhouette view 7. Compute and save the silhouette▪Select the Silhouette icon▪Select the helicopter for the Selection field▪Enter 50mm for the Accuracy parameter▪Select the viewpoint Silhouette View from the Multi-selection List panel then Click OK▪Launch the computation by clicking on the Preview button▪It takes about one minute and half to compute the silhouette with this accuracy▪The preview window display the result▪Click on the Save button▪You are asked to save the silhouette in a directory: Save it▪Note that the resulting file is a tessellated file format (. cgr)▪Click on the Close button8. Create a scene with the silhouette duplicated several times▪Close all the windows in CATIA▪Go to the DMU Navigator workbench▪Insert as an existing component the silhouette you have just created▪You can inspect the silhouette as you wish▪Within the Product, copy and paste the helicopter several times,▪And use the 3D Compass to move the copies▪You can create a scene with 4 or 5 helicopters parked together9. Information about the reduction of sizeSize of the original model: 15.7 MBSize of the tessellated file: 7.8 MBNumber of triangles: 463.000Size of the silhouette: 3.4 MBNumber of triangles: 229.000Step 310. Compute Wrapping▪Go to the DMU Optimizer workbench▪Open the CATProduct : CATDMO_NH90_Step3.CATProductSelect the view View for Wrapping in the Named Views panelThis viewpoint is the one which will be used for the Wrapping computation11. Compute the Wrapping representation and substitute it to the original▪Select Tools -> Options▪Select DMU Optimizer in the left-hand box▪Select the DMU Optimizer tab▪Switch the Manage as alternate shape option on for Wrapping▪Check that Activate shape option is on▪Check that Default shape option is off▪Click OK▪Select the Wrapping icon▪Select the landing gear for the Selection field▪Put the Grain value to 50 mm▪Put the Ratio to 0.0▪Click Preview▪Note that the wrapping representation is replacing the original model in the session, because the Activate Shape option is on in the DMU Optimizer tab▪Make some tests by changing the parameters Grain,Ratio or Cubic, with Preview button to compute the new representation▪Click Save when you are satisfied with the wrapping representation ▪You are asked to save the wrapping representation (cgr file)▪Re-compute on another component or click CloseStep 412. Compute Thickness▪Go to the DMU Optimizer workbench▪Open the CATProduct : CATDMO_NH90_Step2-4.CATProduct13. Prepare the options for the result▪Turn the option Manage as an alternate shape on for Thickness14. Compute and visualize the thickness▪Select the Thickness icon▪Select the NH90 skin for the Selection field▪Enter 5 mm for the Offset1 field▪Enter 0 mm for the Offset2 field▪Click Preview to start the computation▪You can manipulate the new representation as you wish15. Analyse the new representation (volume)▪Select the Measure item icon▪Click on the NH90 skin with its new thickness▪example with composites structures)▪Close the Measure item panel▪You can try several thicknesses and re-start the computation, then compare the volumes▪To go further in this functionnality, you can put some orientation constraints to the faces with a wrong orientation, and re-start thecomputationStep 51. Compute Offset▪Go to the DMU Optimizer workbench▪Open the CATProduct : CATDMO_NH90_Step5.CATProduct▪Turn the option Manage as an alternate shape on for Offset ▪Display the view View Offset2. Compute and visualize the offseted representation▪Select the Offset icon▪Select the Actuator Cylinder component for the Selection field ▪Enter 20 mm for the Offset field▪Click Preview to start the computation▪You can manipulate the new representation as you wish▪You can try different values for the offset, then save the one you want to keep▪Click CloseStep 63. Swept Volume▪Click on the swept volume icon▪Choose the SweptVolume replay▪Click on the search icon of Products to sweep and keep selected only the Landing Gear Wheel▪Click OK▪Click on Apply button to preview the result in the preview window▪Click Ok to store the result as a Cgr, Vrml or V4 model file4. Close the structure▪Select File > Close…▪Select No save in the Close panelStep 75. Compute Free Space▪Go to the DMU Optimizer workbench▪Open the CATProduct : CATDMO_NH90_Step6.catproduct▪Turn the option Manage as an alternate shape on for Free Space6. Compute and visualize the free space representation▪Select the Free Space icon▪Select the wheel model for the Selection field▪Click Dialog Active to display the Free space box panel▪Click on the Trim on selection button to re-center the box on the wheel▪Put the Accuracy to 10 mm▪Put the Type to: In box area▪Click Preview to start the computation▪You can manipulate the new representation as you wish▪You can try different values for the accuracy, then save the one you want to keep▪Note that the representation saved is a 3Dmap format, that is to say a volume representation, made of voxels。

plop-templates作用

plop-templates作用

plop-templates作用Plop模板是一个代码生成工具,它可以帮助开发者自动化生成重复且模板化的代码。

使用Plop模板可以减少开发过程中的重复劳动,提高开发效率。

Plop 模板可以用于创建新的代码文件、文件夹、函数、类等,通过预先定义好的模板来生成相应的代码。

Plop模板的主要作用有以下几个方面:1. 代码标准化:使用Plop模板可以遵循统一的代码风格和结构,减少不同开发人员之间代码风格的差异。

开发人员可以根据项目要求,预先定义好代码的标准模板,包括文件布局、命名规范、代码注释等。

在创建新代码文件时,只需要选择相应的模板,Plop模板会自动按照标准模板生成相应的代码。

2. 提高开发效率:Plop模板可以帮助开发人员减少重复性的工作。

在开发过程中,经常会出现一些类似的任务,比如创建新的接口文件、新的表单组件等。

使用Plop模板,可以预先定义好这些任务的模板,当需要创建新的代码文件时,只需要运行Plop模板,输入相应的配置参数,就能够自动生成相应的代码文件。

3. 统一更改管理:在项目开发过程中,经常需要对代码进行修改和优化。

使用Plop模板可以使这些修改更加容易和可控。

当需要对代码进行修改时,只需要对模板文件进行更改,然后重新运行Plop模板,就能够将更改应用到项目中的所有相应代码文件中。

这样可以避免漏改和错误修改,保证代码的一致性。

4. 降低错误率:人工创建代码文件容易出现错误和遗漏,特别是在大型项目中。

使用Plop模板可以降低这种错误的发生。

通过预先定义好的模板,Plop模板可以自动化创建代码文件,减少手动创建带来的错误和遗漏。

同时,Plop模板可以在创建代码文件之前进行输入验证,确保输入的参数符合要求,减少由于错误输入导致的错误。

总之,Plop模板是一个非常实用的代码生成工具,可以帮助开发人员提高开发效率,降低错误率,同时也可以帮助项目实现代码标准化和统一更改管理。

通过使用Plop模板,开发人员可以更加专注于业务逻辑的开发,而不需要花费大量时间和精力在重复性的代码创建和维护上。

Datacard ID Works Enterprise身份证软件说明说明书

Datacard ID Works Enterprise身份证软件说明说明书

Sophisticated software for professional ID programsD atacard ® ID Works Enterprise identi fi cation software provides powerful, user-friendly tools for card design, secure card production and fl exible management of complex, integrated ID programs.High-end capabilities, modular components• M odular platform. Separate packages for design and production let you distribute tasks effectively and pay only for the features you need at each workstation.• B iometrics and smart cards. The software offers smart card support (proximity plug-in) to simplify smart card personalization management. You can also design multi-application smart card programs with the ID Works Software Developer’s Kit. • I ntuitive design tools. Enterprise software enables you to design cards, reports and production forms with speed and simplicity. Shape drawing, transparent backgrounds and ghost images help customize cards. The application lets you integrate production forms with ODBC-compliant, multiple-table databases. Enterprise Designer software also allows you to access ID information stored in a directory service via the Lightweight Directory Access Protocol (LDAP).• E nhanced operational productivity. Simple, powerful interfaces make it easy to captureimages, enter and retrieve data and print cards and reports.ID Works Enterprise identi fi cation software is ideal for end-to-end management of complex ID programs.SOLUTIONS AND SUPPORT FROM A PROVEN PROVIDEROnly Datacard Group offers the hardware, software, supplies and service required to manage secure centralized and instant card issuance. We understand the consumer demands, security risks and other unique needs of both issuance models. For 40 years, fi nancial card issuers around the world have trusted us to make card issuance fast, affordable and secure. The Datacard Secure Issuance Platform re fl ects this unmatched experience. You can also optimize your investment with our full line of professional services for planning, data migration, program start-up and ongoing technical support. We provide support in more than 120 countries.INTRO BASIC STANDARD ENTERPRISESOFTWARE SOFTWARE SOFTWARE SOFTWAREImage File Input • • • •Tru Photo Solutions• • • •TWAIN Capture / Video for Windows • • • •Microsoft Access Database • • • •Magnetic Stripes and Bar Codes •• • •Ghost Option for Photo Field• • •Text File Import / Export to Microsoft Access • • •Modular Packages for Card Design and Production • •ID Works Visitor Manager Software • •Tru Signature• •Multiple-Table ODBC Databases • •SDK Support• •Proximity Card Plug-in for Smart Cards • •SASI and Lifetouch Plug-ins•Datacard ID Works Identifi cation Software Compatability Feature SetDatacard, ID Works and Tru are registered trademarks, trademarks and/or service marks of DataCard Corporation in the United States and/or other countries. Microsoft, Active Directory, SQL Server, Windows and Windows Vista are trademarks or registered trademarks of Microsoft Corporation. Oracle and Oracle10g are registered trademarks of Oracle Corporation. IBM and DB2 are registered trademarks of IBM Corporation. Names and logos on sample cards are fi ctitious. Any similarity to actual names, trademarks or tradenames is coincidental.©2010-2013 DataCard Corporation. All rights reserved. Speci fi cations subject to change without notice.DS13-1104CORPORATE HEADQUARTERS 11111 Bren Road WestMinnetonka, Minnesota *****************Standard FeaturesF lexible card, report and production form design User-defi ned card size (CR50, CR80, Custom) Auto-create production form Shape drawing support Font sizing and colors M ultiple fi eld selection, alignment and formatting Copy card and report designs between projects Field types V ariable text (with masking); Static text (with word wrap option); Photo (with border, ghost or transparent background option); Date; Bar code (22 types,including PDF417 binary support); Magnetic stripe; Static and variable graphic (with ghost and transparent color options); Non-printable area; List; Composite; Print count; Auto sequence; Signature; Smart card; Binary fi eld; Event button; PDF417 binary bar code supportImage management I n-production image import and export (.BMP , .EPS, .JPG, .PCT, .PCX, .PNG, .PSD, .TGA, .TIF , .WMF) Image and signature storage as BLOBs or fi les Multiple images per record Crop and adjust existing photo B atch import/export photos and images from productionProduction and data management Data-driven productionSupports multiple-table databases Supports Software Developer’s Kit Proximity card plug-inSASI and Lifetouch plug-ins Auto-create M icrosoft ® Access 2000 databaseDatabase managementQuick, advanced and stored searches Retrieve records from “today” Retrieve records from “this week”Database supportOracle ® Oracle8i, Oracle9i and Oracle10g ®, Oracle 11g L DAP-compliant directory services (such as Microsoft ® Active Directory ®)Microsoft Access 2000, 2007, 2010 M icrosoft ® SQL Server ™ 2000, 2005, 2008, 2010 IB M ® DB2® Universal Server 7.1 and 8.1Help featuresOnline user’s guide Online helpHelp desk support Security featuresWizard for managing user account privileges USB hardware security key A pplication- or activity-level user security (per computer or system-wide) Login timeout featureRestrict project access by user Secure user audit trailEnhanced user password security E xpiration of password after user-defi ned number of daysCompatible with the extensive line of Datacard ® card printersImage capture options File inputDatacard ® Tru ™ Photo solutions TWAIN capture devicesVideo for Windows capture devices Datacard Tru Signature solution ID Works Visitor Manager solutionS ystem Requirements O perating system M icrosoft ® Windows ® 2000, XP , Vista ®, 7 (32-bit or 64-bit), or 8 (32-bit or 64-bit)Web browserInternet Explorer v6.0 or later Memory512 MB RAM 100 MB hard disk space for application (not including database)Color16-bit color (65,536 colors)(Cameras may require higher color)Resolution 800 x 600 screen resolution (1024 x 768 recommended)Peripherals CD-RO M drive Available USB portF or a complete list of software features and specifi cations, please visit /IDworks。

Cadence生成嘉立创SMT所需BOM物料清单和坐标文件的方法

Cadence⽣成嘉⽴创SMT所需BOM物料清单和坐标⽂件的⽅法1 Allegro 菜单Tools-ReportsAvailable Reports ⾥选择Placed Component Report,双击添加到Selected Reports⾥。

勾选 Write Report,点 Generate Report,此时会在. brd 所在⽬录下⽣成⼀个 pcp_rep.rpt⽂件。

2 新建Excel⽂件参考⽹上的⽅法,Excel⽂件选择打开, 类型选” 所有⽂件”, 找到刚⽣成的 pcp_rep.rpt.出现” ⽂本导⼊向导”, 直接点下⼀步.分隔符号这⾥把” 逗号” 选上, 然后点下⼀步.列数据格式, 选” ⽂本”, 然后点完成.表格出来了, 前四⾏没⽤, 删掉. 表头要按 JLC 的格式修改, 具体如下:REFDES, 改成 Designator;COMP_DEVICE_TYPE, 这列可以删掉;COMP_VALUE, 改成 Comment;COMP_TOL, 这列可以删掉;SYM_NAME, 改成 Footprint,封装名称尽量保持和嘉⽴创的⼀致;SYM_X, SYM_Y, 这两个改成 Mid X 和 Mid Y, 底下的单位需要是毫⽶, mil 不⾏;SYM_ROTATE, 改成 Rotation;SYM_MIRROR, 改成 Layer. 底下的 YES 全部替换成 B, NO 替换成 T;保存成 .xls 或 .xlsx格式,如果识别有问题,也可以尝试.csv格式。

热⼼⽹友还写了Python脚本⾃动处理以上操作import csvcsvfile = open('pcp_rep.rpt')reader = csv.reader(csvfile)csvfile2 = open('pcp_rep_jlc.csv', 'w', newline='\n')writer = csv.writer(csvfile2, dialect='excel')for line in reader:if len(line) != 1:break# 跳过前四⾏# 按JLC的格式修改表头line = ['Designator', 'Comment', 'Footprint', 'Mid X', 'Mid Y', 'Rotation', 'Layer']print(line)writer.writerow(line)# 查找替换表, 请按需⾃⾏修改my_footprints = ['CAPC2012', 'CAPC1608', 'RESC2012', 'RESC1608']jlc_footprints = ['C0805', 'C0603', 'R0805', 'R0603']for line in reader:del line[1], line[2] # 删除不需要的两列if line[6] == 'NO':line[6] = 'T'elif line[6] == 'YES':line[6] = 'B'if line[2] in my_footprints:line[2] = jlc_footprints[my_footprints.index(line[2])]print(line)writer.writerow(line)csvfile.close()csvfile2.close()虽然BOM 和坐标⽂件可以都⽤这⼀个⽂件,但该⽂件中所有物料都是独⽴的,在匹配器件的时候,如果同⼀种器件有多个,⽐如C2、C3都是47uF,C1206封装同⼀种器件,并且这个器件在嘉⽴创扩展库⾥,就可能要收取两次扩展库器件更换费⽤。

【计算机工程与设计】_应用集成_期刊发文热词逐年推荐_20140726


53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 1031 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
科研热词 推荐指数 web服务 10 集成 4 数据集成 4 面向服务架构 3 虚拟仪器 3 系统集成 3 本体 3 地理信息系统 3 中间件 3 j2ee 3 领域本体 2 集成框架 2 组件式地理信息系统 2 系统设计 2 知识工程 2 电子政务 2 数据仓库 2 持久化 2 异构数据库 2 开源模块 2 对象/关系映射 2 可扩展标记语言 2 元数据 2 企业应用集成 2 struts 2 spring 2 mvc设计模式 2 hibernate 2 面向服务软件体系结构 1 面向服务结构 1 面向服务的体系结构 1 面向对象 1 需求驱动 1 需求模式 1 集群 1 集油站 1 集成计算机辅助制造定义语言 1 集成系统 1 集成测试 1 集成平台 1 集成化 1 链路口 1 里德.索罗门码 1 酒后驾驶监控与报警功能 1 配货查询 1 进化算法 1 轻量级框架 1 轻量级架构 1 软硬件设计 1 软件测试 1 软件方法 1 跨域访问 1

SANGFOR_AC__v11.0_脚本方式单点登录测试指导书

测试指导书SANGFOR_AC_v11.0_脚本方式单点登录测试指导书深信服科技有限公司目录1介绍 (3)1.1 总体说明 (3)1.2 文档目的 (3)1.3 缩写和约定 (3)2需求背景 (3)3实现方式 (4)4测试环境 (4)4.1 测试拓扑 (4)4.2 测试条件 (5)4.3 预期测试效果 (6)5测试过程 (6)6测试效果 (18)7高级用法 (19)8注意事项 (25)1 介绍1.1 总体说明完成该文档的过程中,不可删除文档结构,但撰写本文档时,可以自行进行内容和结构的扩展。

无内容可写的章节,请保持现有斜体字描述。

模板中现有的黑体字、非斜体字务必予以保留。

1.2 文档目的为了方便快速达到功能测试效果,减少现场测试出现问题机率。

1.3 缩写和约定AD域:Windows Active DirectoryLogon:单点登录上线脚本Logoff:单点登录下线脚本Gpmc.msc:windows 2008 server 打开域组策略命令Gpupate.exe /force:刷新组策略命令,更改组策略后,需执行此命令使更改立即生效Rsop.msc:加入域的PC上执行,可以通过此命令查看PC是否获取到域组策略Gpresult.exe:加入域的PC上报告,可以通过此命令查看PC是否获取到域的组策略Logon及logoff脚本方式单点登录兼容以下操作系统:2 需求背景2.1. AD域单点登录适用于客户内网已有AD域统一管理内网用户,部署AC后,希望AC 和AD域结合实现平滑认证(即终端PC开机通过域帐号登录AD域后自动通过AC认证上网,无需再次人为通过AC认证,对终端用户透明)2.2. 希望以域用户的身份实名上网,实名记录用户上网日志。

3 实现方式脚本方式单点登录通过在域上配置组策略加载logon脚本(登录脚本)及logff(注销脚本),当域用户登录域时,获取到相应组策略,执行logon脚本向AC认证上线;当域用户从域中注销时,执行logff脚本向AC请求注销下线,整个过程对终端用户透明。

AdvancedSkeleton高级骨骼插件基本介绍

AdvancedSkeleton高级骨骼插件基本介绍(2011-02-08 22:34:12)转载▼分类:教程标签:杂谈AdvancedSkeleton高级骨骼插件基本介绍这个插件的基本功能还是不错的,目前版本到了3.0了吧,后面会陆续地介绍一些常用的插件,如:TSM、TFM、zootoolbox等等……1.简介:AdvancedSkeleton Pro是Maya的角色设计的工具的合集。

主要特点是:Pro不再局限于预先设计好的FitSkeleton,而是可以创建任意的FitSkeleton;具有本地旋转轴和旋转度,并可控;可以从AdvancedSkeleton 回到FitSkeleton,方便你做些改变然后重建AdvancedSkeleton;Pro在身体配置方面不再做限制,三个头,五条腿,100个手指都可以;支持拖拽“Selector Designer",可以通过拖曳的方式创建自定义的选择界面。

同时,“PoserDesigner”可以创建、保存和使用姿势。

2. 安装运行安装文件(setup.exe)选择目标目录注意: 安装目录要设置在本地磁盘我的文档下例如:C:\Documents and Settings\Name\My Documents\Maya\2008\完成安装。

启动Maya现在你就可以在工具栏里看到一个叫“advancedSkeleton”的部分3. 概述:AdvancedSkeleton 的关键功能是:由一个简单的骨骼链(FitSkeleton)生成一个复杂的运动系统(AdvancedSkeleton)因为在角色的右边,所以关节是朝向负X方向的并且会被镜像到角色的左边以下这些信息都是从FitSkeleton关节中读取的:名字、位置、旋转、旋转轴向、旋转The following information gets read from the FitSkeleton从这个关节也可以决定高级的控制器,如:标签和输入和输出的连接关系图以下的关节标签会创建高级控制器:并且不局限于设置驱动关键帧,任何可以连接上的节点都可以。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

WANO
WANO
WANO
Solution
• • Deploy Sangfor WANO as bridge mode in HQ. Deploy Sangfor WANO as router mode in branches.
15
= For Your Bandwidth =
Previous Network situation analysis
Solution
• Deploy Sangfor WANO as bridge mode.
WANO
WANO
14
= For Your Bandwidth =
Network situation analysis
OA, FTP,HTTP, etc.
Network Situation
• HQ located in Beijing, with over 50 branches located all over china. Using DDN leased line network to connect HQ and branches. The bandwidth of DDN leased line is 2M.
Backup link
Data Center
Backup WAN link
Backup Data Center
Main WAN link
Optimize the internet links against the latency and package lost rate , especially under the poor network status.
Product-IMD
NGFW WANO SSL VPN IAM
Product-Domestic
NGAF WOC SSL VPN SG AD
AC
BM
IPSEC VPN
APM
SANGFOR LOGO
Architecture
3
= For Your Bandwidth =
Sangfor style: basic icons
1G
IBM DB2 database
Network Situation
• • • • •
Have two data centers, one is in Shenzhen and another is in Shanghai. Two 1G SDH leased lines (network delay: 32ms ; package lost rate :0 ). DR server is IBM RS6000 AIX .DR database is IBM DB2. The 1G DDN leased line cannot be fully used due to the bottleneck of TCP throughput. The RTO & RPO cannot satisfied the customer.
The usage of the leased line is about 80% or more , calling for the leased line bandwidth update, which means a higher COST. The RTO & RPO cannot satisfied the customer.
SANGFOR topology icon
Including SANGFOR style icon as well as some icons from Cisco or HUAWEI , for your reference~
Topology designed by author
All the topology are designed while working in IMD , just gathering all of them for convenience~
16 = For Your Bandwidth =
Network optimized by Sangfor WANO VC solution
Network optimized by Sangfor WANO VC solution
11 = For Your Bandwidth =
DR system topology analysis
Main data center
OSPF protocol 50M IBM DB2 server based on LINUX
Backup data center
Leased line (SDH) WAN
12 = For Your Bandwidth =
Challenges
Solution
• •
Link Level optimization
Providing a cost effective backup link solution to ensure the stable of links of the DR system.
OSPF protocol 50M IBM DB2 server based on LINUX
Network Situation
• • • • •
Have two data centers, one is in Beijing and another is out of Beijing . The WAN between the two data center is 50M leased lines . DR database is IBM DB2 deployed on LINUX OS. Meanwhile, the OSPF protocol is required to be supported. The usage of the leased line is about 90% or more , calling for the leased line bandwidth update, which means a higher COST. The RTO & RPO cannot satisfied the customer. Deploy the Sangfor WANO as bridge mode . Support OSPF protocol , as well as hardware bypass.
Inter
6
= For Your Bandwidth =
Other style
Architecture
Cisco
Si
Si
Huawei
7
= For Your Bandwidth =
Other style
Huawei
8
= For Your Bandwidth =
Agenda
HQ
WANO
VC
• •
Challenges

2M DDN network

Branches
WANO
Video conference cannot run smoothly due to the bandwidth grabbing by other applications. The high Utilization rate of bandwidth demands upgrading of the network.
HTP algorithm
13
= For Your Bandwidth =
Network situation analysis
☆ ☆ ☆ ☆ ☆ ☆ ☆
Network Situation
OA, FTP, etc.




VC WANO
HQ-★
• •
HQ located in Nanning with nine branches located in nine different cities. Using VPN network to connect HQ and branches. Package lost rate on the WAN is about 8%.
OA ERP IIS-WEB NC NC-Oracle Exchange-2007 OS & applications VMWare virtual platform Leased line (SDH) WAN
Oracle
6M
Backup DC in HONG KONG
6M
Oracle SAN Storage zone Oracle Local backup DC
Topology designed by author
All the topology are designed while working in IMD , just gathering all of them for convenience~
2
= For Your Bandwidth =
Sangfor style: basic icons
WAN based on internet for other applications
branch
100M
WAN based on leased line for VC system
branch
2M
……
30M
branch
……
2M
branch
MPLS WAN
50M
2M
HQ
OA,ERP,MAIL,WEB ,etc.
HQ
Video conference system
• The total cost of ownership is very high due to the two wide-area network, especially the leased line WAN, which cost $ 32,000 per year.
相关文档
最新文档