Matthew Kendall

Total Page:16

File Type:pdf, Size:1020Kb

Matthew Kendall Stellaris Toolchain - Matthew Kendall http://www.matthewkendall.com/freesoftware/stellaris-to... Matthew Kendall Search this site Navigation Free Software > Home Stellaris Toolchain Contact Electronics Free Software Notes on how to set up the toolchain for development in C on Luminary Micro's Stellaris ARM Cortex M3 microcontrollers. Photos StellarisWare StellarisWare is Luminary Micro's name for the useful set of libraries that they supply. DriverLib is the Peripheral Driver Library for the on-chip peripherals (and appears to have previously been used as the name of the package as a whole). GrLib is the Graphics Library that provides a set of graphics primitives and a widget set for creating graphical user interfaces on boards that have a graphical display. There is also a bootloader, some (target) utilities and (host) tools. StellarisWare is supplied with evaluation kits and also downloadable from Luminary Micro. Download the version associated with the target board you have to get appropriate example programs. GCC, binutils, et al CodeSourcery says "CodeSourcery, in partnership with ARM, Ltd., develops improvements to the GNU Toolchain for ARM processors and provides regular, validated releases of the GNU Toolchain". CodeSourcery also develops proprietary software, principally startup code and various libraries for use on the target, and a debug "sprite" for use on the development host. This is all bundled together in a package named Sourcery G++ which is available in Personal and Professional editions. Ignore this and download the Lite edition which contains just the 1 de 5 14/05/13 20:45 Stellaris Toolchain - Matthew Kendall http://www.matthewkendall.com/freesoftware/stellaris-to... GNU toolchain without the proprietary components. http://www.codesourcery.com/sgpp/lite/arm Since CodeSourcery contribute patches back upstream in theory one could simply obtain the GCC sources and compile the tools oneself but in practice it is more convenient (and likely more timely) to obtain pre-built binaries from CodeSourcery. The Sourcery G++ Lite download is an installer that will install the tools, install shortcuts to the documentation, and add the tools directory to the path. make, et al To build the StellarisWare libraries and example programs (and your own programs) you need make and an associated shell with standard tools like mkdir, rm, etc. There are various ways of achieving this but the simplest seems to be UnxUtils which is a native Windows build of standard GNU tools. http://sourceforge.net/projects/unxutils/ The download is just a zip archive. Unzip it anywhere and add the /bin and /usr/local/wbin directories to the path. The advantage of UnxUtils over GnuWin32 is that GnuWin32 does not include a shell. The StellarisWare makefiles use shell built-ins (such as type) and syntax that is not understood by the Windows shell. UnxUtils includes zsh, and make will spawn to this if it is present. UnxUtils is officially endorsed in that sense that it is what is distributed by Luminary Micro with evaluation kits to enable command line use of the CodeSourcery tools. It is also possible to use cygwin. The StellarisWare makefiles contain code to mugne paths to cygwin style if invoked in a cygwin environment. At this point it should be possible to build from the command line by invoking make in any of the example project directories. eclipse IDE Download and install eclipse with CDT (the C development toolkit). You can download vanilla eclipse and the CDT plugins separately but since there are version-specific dependencies it is better to get the bundle. Once installed use the built-in "Install new software.." functionality to add the Zylin Embedded CDT plug-in and optionally the Eclox plug-in for easily working with Doxygen. http://www.eclipse.org/downloads/ http://opensource.zylin.com/zylincdt http://download.gna.org/eclox/update/ LM Flash Programmer The LM Flash Programmer tool is not part of StellarisWare per se but is also worth obtaining from Luminary Micro. It allows for programming targets via serial or Ethernet interfaces in conjunction with the bootloader, or via JTAG (but only via the interface built in to the evaluation boards). In eclipse the LM Flash Programmer can be set up as an External Tool so that you can build and download to the target with a single button click. Create a new external tool configuration, enter appropriate values for the location, working directory and arguments. Location C:\Program Files\Luminary Micro\LM Flash Programmer\LMFlash.exe Working Directory ${project_loc} 2 de 5 14/05/13 20:45 Stellaris Toolchain - Matthew Kendall http://www.matthewkendall.com/freesoftware/stellaris-to... Arguments --quick-set=manual --interface=ethernet --net-config=<host IP addr>,<target IP addr>,<target MAC addr> gcc\${project_name}.bin (Invoke lmflash from the command line with the --help argument to see a list of all options). Select "Build before launch" and choose to display the new configuration in the External Tools favorites menu. JTAG Tool The Olimex ARM-USB-TINY interface appears to have the best price/performance of the FTDI2232-based JTAG dongles. Things to check for if considering an alternative include the target working voltage range (the cheaper DIY dongles do not include level shifters and assume the target works at 3V3), and OpenOCD compatibility. http://www.olimex.com/dev/arm-usb-tiny.html Install the software from the bundled Olimex CD. This results in a gccfd directory containing an ARM-USB-OCD-DRIVER directory with drivers for the dongle, and an openocd directory with OpenOCD documentation and binaries. Connect the dongle and point Windows at the drivers. Copy the openocd directory somewhere convenient (e.g. C:\Program Files). The gccfd directory is then redundant and can be deleted. The remainder of its contents is actually a complete ARM toolchain including Eclipse, YAGARTO and various example projects which is a convenient starting point for Olimex development boards, but the tool versions are a little old and the focus is not Cortex-M3 because Olimex does not sell Cortex-M3 eval boards. The driver supplied by Olimex is FTDI's proprietary ftd2xx.dll and the OpenOCD binary supplied is built to work with this. The OpenOCD project is apparently frowning on distribution of binaries linked against ftd2xx.dll for release 0.2.0 onwards so in future this may change. OpenOCD The best way to get OpenOCD binaries is from the vendor of your JTAG tool (see above) since the OpenOCD project itself does not distribute official binaries. The OpenOCD website does have source code and documentation. The best (and apparently official) forum is at SparkFun. Binaries are available for recent releases from Fedddie Chopin, one of the OpenOCD developers. http://openocd.berlios.de/web/ http://forum.sparkfun.com/viewforum.php?f=18 http://www.freddiechopin.info/index.php/en/download/category/4-openocd In eclipse OpenOCD can be set up as an External Tool so that you can start it with a single button click. Create a new external tool configuration, enter appropriate values for the location, working directory and arguments. Location C:\Program Files\openocd\bin\openocd-ftd2xx.exe Working Directory ${project_loc} Arguments -f openocd.cfg -f arm-usb-ocd-tiny.cfg -f lm3s6918-idm.cfg The arguments reference one or more configuration files. The division of commands between the files is arbitrary but it is convenient to have one file for general configuration of OpenOCD itself, one containing configuration specific to the JTAG dongle and one specific to the target. I have: openocd.cfg: telnet_port 4444 gdb_port 3333 gdb_memory_map enable gdb_flash_program enable 3 de 5 14/05/13 20:45 Stellaris Toolchain - Matthew Kendall http://www.matthewkendall.com/freesoftware/stellaris-to... arm-usb-ocd-tiny.cfg interface ft2232 ft2232_device_desc "Olimex OpenOCD JTAG TINY A" ft2232_layout "olimex-jtag" ft2232_vid_pid 0x15BA 0x0004 jtag_speed 10 lm3s6918-idm.cfg jtag_nsrst_delay 100 jtag_ntrst_delay 100 reset_config srst_only jtag_device 4 0x1 0xf 0xe target cortex_m3 little reset_halt 0 lm3s working_area 0 0x20000000 0x4000 nobackup flash bank stellaris 0 0 0 0 0 At this point if you start OpenOCD from either the command line or from the External Tool facility within Eclipse you should be able to telnet to localhost:4444 and try out some commands. soft_reset_halt resume exit My target-specific configuration file just attaches to the target ready for debugging because I am programming using LM Flash Programmer (see above). It is also possible to program via JTAG. GDB A GDB binary is part of the CodeSourcery package. Eclipse can be configured to use it, and to have it connect to the GDB server provided by OpenOCD. In Eclipse create a new Debug configuration of the Zylin Embedded debug (native) type. In the Debugger tab configure the GDB Debugger as C:\Program Files\CodeSourcery\bin\arm-none-eabi-gdb.exe. In the Command tab configure Initialize and Run commands: Initialize: target remote localhost:3333 Run monitor soft_reset_halt symbol-file "foo.axf" continue The symbol-file line should have the full path to the axf file. Quote the path if it contains spaces and escape backslashes. To ensure that the axf file does actually contain symbols define DEBUG in the project makefile. Other Info http://blogs.sun.com/ralkire/entry/open_tools_for_the_cortex 4 de 5 14/05/13 20:45 Stellaris Toolchain - Matthew Kendall http://www.matthewkendall.com/freesoftware/stellaris-to... Comentarios No tienes permiso para añadir comentarios. Iniciar sesión | Informar de uso inadecuado | Imprimir página | Eliminar acceso | Con la tecnología de Google Sites 5 de 5 14/05/13 20:45.
Recommended publications
  • Postgis 3.1.0Alpha1 Manual I
    PostGIS 3.1.0alpha1 Manual i PostGIS 3.1.0alpha1 Manual PostGIS 3.1.0alpha1 Manual ii Contents 1 Introdução 1 1.1 Comitê Diretor do Projeto . .1 1.2 Contribuidores Núclero Atuais . .2 1.3 Contribuidores Núclero Passado . .2 1.4 Outros Contribuidores . .2 2 Instalação do PostGIS 5 2.1 Versão Reduzida . .5 2.2 Compilando e instalando da fonte: detalhado . .5 2.2.1 Obtendo o Fonte . .6 2.2.2 Instalando pacotes requeridos . .6 2.2.3 Configuração . .7 2.2.4 Construindo . .9 2.2.5 Contruindo extensões PostGIS e implantado-as . .9 2.2.6 Testando . 11 2.2.7 Instalação . 20 2.3 Instalando e usando o padronizador de endereço . 21 2.3.1 Instalando Regex::Montar . 21 2.4 Instalando, Atualizando o Tiger Geocoder e carregando dados . 21 2.4.1 Tiger Geocoder ativando seu banco de dados PostGIS: Usando Extensão . 22 2.4.1.1 Convertendo uma Instalação Tiger Geocoder Regular para Modelo de Extensão . 24 2.4.2 Tiger Geocoder Ativando seu banco de dados PostGIS: Sem Utilizar Extensões . 24 2.4.3 Usando Padronizador de Endereço com Tiger Geocoder . 25 2.4.4 Carregando Dados Tiger . 25 2.4.5 Atualizando sua Instalação Tiger Geocoder . 26 2.5 Problemas comuns durante a instalação . 26 PostGIS 3.1.0alpha1 Manual iii 3 PostGIS Administration 28 3.1 Tuning your configuration for performance . 28 3.1.1 Startup . 28 3.1.2 Runtime . 29 3.2 Configuring raster support . 29 3.3 Creating spatial databases . 30 3.3.1 Spatially enable database using EXTENSION .
    [Show full text]
  • Installation Guide
    install_guide.book Page i Monday, May 11, 2015 8:48 PM Installation Guide Installation Guide Schrödinger Software Release 2015-2 Schrödinger Press install_guide.book Page ii Monday, May 11, 2015 8:48 PM Installation Guide Copyright © 2015 Schrödinger, LLC. All rights reserved. While care has been taken in the preparation of this publication, Schrödinger assumes no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. Canvas, CombiGlide, ConfGen, Epik, Glide, Impact, Jaguar, Liaison, LigPrep, Maestro, Phase, Prime, PrimeX, QikProp, QikFit, QikSim, QSite, SiteMap, Strike, and WaterMap are trademarks of Schrödinger, LLC. Schrödinger, BioLuminate, and MacroModel are registered trademarks of Schrödinger, LLC. MCPRO is a trademark of William L. Jorgensen. DESMOND is a trademark of D. E. Shaw Research, LLC. Desmond is used with the permission of D. E. Shaw Research. All rights reserved. This publication may contain the trademarks of other companies. Schrödinger software includes software and libraries provided by third parties. For details of the copyrights, and terms and conditions associated with such included third party software, use your browser to open third_party_legal.html, which is in the docs folder of your Schrödinger software installation. This publication may refer to other third party software not included in or with Schrödinger software ("such other third party software"), and provide links to third party Web sites ("linked sites"). References to such other third party software or linked sites do not constitute an endorsement by Schrödinger, LLC or its affiliates. Use of such other third party software and linked sites may be subject to third party license agreements and fees.
    [Show full text]
  • Tortoisemerge a Diff/Merge Tool for Windows Version 1.11
    TortoiseMerge A diff/merge tool for Windows Version 1.11 Stefan Küng Lübbe Onken Simon Large TortoiseMerge: A diff/merge tool for Windows: Version 1.11 by Stefan Küng, Lübbe Onken, and Simon Large Publication date 2018/09/22 18:28:22 (r28377) Table of Contents Preface ........................................................................................................................................ vi 1. TortoiseMerge is free! ....................................................................................................... vi 2. Acknowledgments ............................................................................................................. vi 1. Introduction .............................................................................................................................. 1 1.1. Overview ....................................................................................................................... 1 1.2. TortoiseMerge's History .................................................................................................... 1 2. Basic Concepts .......................................................................................................................... 3 2.1. Viewing and Merging Differences ...................................................................................... 3 2.2. Editing Conflicts ............................................................................................................. 3 2.3. Applying Patches ...........................................................................................................
    [Show full text]
  • Vefþjónustur SFR
    Vefþjónustur SFR Vefþjónustur SÍ - SFR Efnisyfirlit Vefþjónustur SÍ - SFR Efnisyfirlit 1. Almennt 2. Slóðir 2.1. Skyggnir 2.1.1. Prófunarumhverfi Skyggnir 2.1.2. Raunumhverfi Skyggnir 2.2. TR/SÍ 2.2.1. Prófunarumhverfi TR/SÍ 2.2.2. Raunumhverfi TR/SÍ 3. Umslag : sfr 3.1. profun 3.2. stadasjuklings 3.3. vistaskjal 3.4. tryggingaskra 4. Stoðgögn 4.1. Villulisti 4.2. Staða sjúklings : tafla 4.3. Þjónustuflokkar sjúkrahúsa 4.4. Þjónustflokkar heilsugæslu (hér bætist oft nýtt við með nýjum sendendum) 4.5. TR-kóði: 5. SFR-soap köll 5.1. SFR-profun 5.2. SFR-stadasjuklings 5.3. SFR-vistaskjal 5.4. profun: 5.5. stadasjuklings: 5.6. vistaskjal: 1. Almennt Föll sem viðskiptavinir geta sent SÍ eru móttekin í gegnum SOAP-umslag. Umslag sfr Umslag fyrir upplýsingar tengdar ýmsum lækniskostnaði og útreikningi á komugjöldum. Upplýsingar sem fara á milli grunnkerfa SÍ og kerfa viðskiptavina SÍ. 2. Slóðir 2.1. Skyggnir Föll sem eru uppsett hjá Skyggni eru: profun stadasjuklings tryggingaskra Þau eru uppsett á eftirfarandi slóðum: 2.1.1. Prófunarumhverfi Skyggnir Prófunarumhverfi : https://pws.sjukra.is/sfr/sfr.svc Schema skilgreining : https://pws.sjukra.is/sfr/sfr.svc?wsdl 2.1.2. Raunumhverfi Skyggnir Raunumhverfi : https://ws.sjukra.is/sfr/sfr.svc Schema skilgreining : https://ws.sjukra.is/sfr/sfr.svc?wsdl 2.2. TR/SÍ Föllin sem eru uppsett hjá TR/SÍ eru: profun stadasjuklings vistaskjal Þau eru uppsett á eftirfarandi slóðum 2.2.1. Prófunarumhverfi TR/SÍ Prófunarumhverfi : https://huld.sjukra.is/p/sfr Schema skilgreining : https://huld.sjukra.is/p/sfr?wsdl 2.2.2.
    [Show full text]
  • Programs, Processes and Attacks Windows Live Response/Analysis
    Live response Programs, processes and attacks Windows Live response/analysis 101 Linux Live response/analysis 101 Live response data analysis Programs • A compiled Windows program - Portable Executable File format (also called the PE/COFF format) When started certain (imported) DLLs are loaded that is needed by the executable PEview Link Libraries and OS relocation 1 • A dynamic link library (or shared library) takes the idea of an ordinary library (also called a statically linked library) one step further • A dynamic/shared link library is a lot like a program, but instead of being run by the user to do one thing it has a lot of functions "exported" so that other programs can call them – This list, called the export table, gives the address inside the DLL file of each of the functions which the DLL allows other programs to access • The calling executable have a list of imports or imported functions from every DLL file it uses • When Windows loads your program it creates a whole new "address space" for the program • When your program contains the instruction "read memory from address 0x40A0F0 (or something like that) the computer hardware actually looks up in a table to figure out where in physical memory that location is – The address 0x40A0F0 in another program would mean a completely different part of the physical memory of the computer Link Libraries and OS relocation 2 • Programs, when they are loaded, are "mapped" into address space. This process basically copies the code and static data of your program from the executable file
    [Show full text]
  • STOC-AGENT 講習会 (コンパイル編) 海岸港湾研究室(有川研究室) Installer
    STOC-AGENT 講習会 (コンパイル編) 海岸港湾研究室(有川研究室) Installer 1) • MSMPI(Microsoft MPI v10.0 (Archived)) -msmpisdk.msi 前回配布分との変更点 -msmpisetup.exe 2) • gfortran Compiler(Mingw-w64) -mingw-w64-install.exe 3) • GNU MAKE -make-3.81.exe 4) • CADMAS-VR -CadmasVR_3.1.1_Setup_21050622.exe • CADMAS-MESH-MULTI 4) -CADMAS-MESH-MULTI-1.3.4-x64-setup.exe REFERED 1) https://www.microsoft.com/en-us/download/details.aspx?id=56727 2) http://mingw-w64.org/doku.php/download/mingw-builds 3) http://www.gnu.org/software/make/ http://gnuwin32.sourceforge.net/packages/make.htm 4) https://www.pari.go.jp/about/ MinGW-gfortran 1.以下のサイトからMingw-w64のダウンロードを行うため画面のSourceforgeをク リック. http://mingw-w64.org/doku.php/download/mingw-builds 2.MingW-W64-build を選択し、一番右図のような画面に移る. MinGW-gfortran 3. ダウンロードしたmingw-w64-installを実行インストールします. 基本的には変更なし 3. mingw-w64がインストールされていることを確認 MinGW-gfortran 5. コントロール パネル¥システムとセキュリティ¥システム¥システムの詳細設定 6. 環境変数を開き、ユーザーの環境変数,PATHを編集(PATHもしくはpathがなけれ ば新規で変数名にPATH,変数値に8.のアドレスを入力) 7. 環境変数名の編集→新規をクリック 8. gfortran.exeのあるフォルダのアドレスを入力(おそらくC:¥Program Files (x86) ¥mingw-w64¥i686-8.1.0-posix-dwarf-rt_v6-rev0¥mingw32¥bin) C:¥Program Files (x86)¥mingw-w64¥i686-8.1.0- posix-dwarf-rt_v6-rev0¥mingw32¥bin MinGW-gfortran 9.コマンドプロンプト(cmd)を開き,gfortran –v のコマンドを入力.以下 のような画面になれば環境設定完了(gfortranのPATHが通りました) GNU MAKE 1.以下のサイトからのmake.exeのダウンロードを行うため、画面のComplete packageのSetupをクリック. http://gnuwin32.sourceforge.net/packages/make.htm 2. make-3.8.1.exeを実行しインストールしてください. GnuWin32がインストールされていることを確認します. (おそらくC:¥Program Files (x86)¥) GNU MAKE 3. コントロール パネル¥システムとセキュリティ¥システム¥システムの詳細設定 4. 環境変数を開き、ユーザーの環境変数,PATHを編集(PATHもしくはpathがなけれ ば新規で変数名にPATH,変数値に6.のアドレスを入力) 5. 環境変数名の編集→新規をクリック 6. make.exeのあるフォルダのアドレスを入力 (おそらくC:¥Program Files (x86)¥GnuWin32¥bin) C:¥Program Files (x86)¥GnuWin32¥bin MSMPI 1.以下のサイトからMicrosoft MPI v10.0のダウンロードをクリック. https://www.microsoft.com/en-us/download/details.aspx?id=57467 2.msmpisdk.msi とmsmpisetup.exe をダウンロード. 3.
    [Show full text]
  • 1KA Offline for Portable Use
    1KA Offline for portable use 1. Installation of Visual C++ Redistributable for Visual Studio 2015 Download the installation file for x86 version of Visual C++ Redistributable from https://www.microsoft.com/en-us/download/details.aspx?id=48145. It is very important to download x86 instead of x64, otherwise 1ka Offline will not work correctly. Figure 1: Installation of Visual C++ Redistributable for Visual Studio 2015 Note: If you already have Microsoft Visual C++ 2015 installed on your computer, the installation guide will return an error. In this case skip to the next part. 2. Download 1KA Offline installation pack Download 1KA Offline from https://www.1ka.si/1ka-offline and unzip the file in the package to your hard drive (C:). First, click the button »Extract to« and then select Local Disk (C:). (Figure 2) Figure 2: Extracting of the installation package After the package is extracted, open the file »UwAmp« you have just created and start the application UwAmp by clicking on »UwAmp.exe«. (Figure 3). You must repeat this step every time you want to use 1KA offline (you can also create a shortcut on the desktop for easy access to the file). Figure 3: File UwAmp.exe 3. Windows users: Installation of additional libraries for data display If you are a Windows user, you must complete the following steps to install additional libraries that enable data display in 1KA Offline. The libraries can be accessed via: • Sed: http://gnuwin32.sourceforge.net/packages/sed.htm • Gawk: http://gnuwin32.sourceforge.net/packages/gawk.htm • Coreutils: http://gnuwin32.sourceforge.net/packages/coreutils.htm You can download the installation files by clicking »Setup« (as seen on figure 4).
    [Show full text]
  • Building Microsoft Windows Versions of R and R Packages Under Intel Linux
    BUILDING MICROSOFT WINDOWS VERSIONS OF R AND R PACKAGES UNDER INTEL LINUX Building Microsoft Windows Versions of R and R packages under Intel Linux A Package Developer’s Tool Linux R is in the search path, then by Jun Yan and A.J. Rossini make CrossCompileBuild will run all Makefile targets described up to the section, Disclaimer Building R Packages and Bundles. This assumes: (1) you have the Makefile in a directory RCrossBuild (empty ex- Cross-building R and R packages are documented in the R cept for the makefile), and (2) that ./RCrossBuild is your [1] source by the R Development Core Team, in files such as current working directory. After this, one should man- INSTALL, readme.package, and Makefile, under the directory ually set up the packages of interest for building, though src/gnuwin32/. This point was not clearly stated in an earlier the makefile will still help with many important steps. We version of this document [2] and has caused confusions. We describe this in detail in the section on Building R Packages apologize for the confusion and claim sole responsibility [3]. In and Bundles. addition, we clarify that the final credit should go to the R De- velopment Core Team. We intended to automate and illustrate those steps by presenting an explicit example, hoping that it Setting up the Build area might save people’s time. Follow them at your own risk. Puz- zles caused by this document should NOT be directed to the R We first create a separate directory for R cross-building, Development Core Team.
    [Show full text]
  • Vefþjónustur SFR - Komureikningur
    Vefþjónustur SFR - komureikningur Vefþjónustur SÍ - SFR Föll sem viðskiptavinir geta sent SÍ eru móttekin í gegnum SOAP-umslag. Umslag sfr Umslag fyrir upplýsingar tengdar ýmsum lækniskostnaði og útreikningi á komugjöldum. Upplýsingar sem fara á milli grunnkerfa SÍ og kerfa viðskiptavina SÍ. Prófunarumhverfi : https://huld.sjukra.is/p/sfr Schema skilgreining : https://huld.sjukra.is/p/sfr?wsdl Ath:. Tegund gilda eru annað hvort N = númer S=strengur D=Dagsetning. Tala innan sviga eftir tegund segir til um mögulega hámarksstærð þeirra. ( dæmi: N(10) er allt að 10 stafa tala). Dagsetningasvæði eru á forminu yyyy-mm-dd [ ] utan um tegundarskilgreiningu svæði merkir að svæði sé valkvætt. Efnisyfirlit Vefþjónustur SÍ - SFR Efnisyfirlit 1. Umslag : sfr 1.1. profun 1.2. stadasjuklings 1.3. vistaskjal 2. Schema: Reikningur komugjalda 3. Skýringar við xml-tög 4. Skema 5. Stoðgögn 5.1. Villulisti 5.2. Staða sjúklings : tafla 5.3. Þjónustuflokkar sjúkrahúsa 5.4. Þjónustflokkar heilsugæslu (hér bætist oft nýtt við með nýjum sendendum) 5.5. TR-kóði: 6. SFR-soap köll 6.1. SFR-profun 6.2. SFR-stadasjuklings 6.3. SFR-vistaskjal 6.4. profun: 6.5. stadasjuklings: 6.6. vistaskjal: 6.7. Skema: 1. Umslag : sfr Sjá: http://huld.sjukra.is:8887/sfr?wsdl (fá prófunarslóð staðfesta hjá SÍ) 1.1. profun Prófunarfall til að prófa hvort samskipti eru í lagi Heiti Tegund Skýring svæðis Inntak sendandi S(100) Einkenni raunverulegs sendanda ef verið er að senda gögn fyrir hönd einhvers annars annars autt/sleppt. starfsmadur S(50) Einkenni starfsmanns sendanda ef sendandi er útfylltur annars autt/sleppt. Úttak tokst N(1) 1 ef móttaka tókst, 0 annars villulysing S(1000) Lýsing á villu ef móttaka tókst ekki.
    [Show full text]
  • RSA Adaptive Authentication (On-Premise) 7.3 Operations Guide
    RSA® Adaptive Authentication (On-Premise) 7.3 Operations Guide Contact Information Go to the RSA corporate website for regional Customer Support telephone and fax numbers: www.emc.com/domains/rsa/index.htm Trademarks RSA, the RSA Logo, eFraudNetwork and EMC are either registered trademarks or trademarks of EMC Corporation in the United States and/or other countries. All other trademarks used herein are the property of their respective owners. For a list of RSA trademarks, go to www.emc.com/legal/emc-corporation-trademarks.htm#rsa. License Agreement This software and the associated documentation are proprietary and confidential to EMC, are furnished under license, and may be used and copied only in accordance with the terms of such license and with the inclusion of the copyright notice below. This software and the documentation, and any copies thereof, may not be provided or otherwise made available to any other person. No title to or ownership of the software or documentation or any intellectual property rights thereto is hereby transferred. Any unauthorized use or reproduction of this software and the documentation may be subject to civil and/or criminal liability. This software is subject to change without notice and should not be construed as a commitment by EMC. Note on Encryption Technologies This product may contain encryption technology. Many countries prohibit or restrict the use, import, or export of encryption technologies, and current use, import, and export regulations should be followed when using, importing or exporting this product. Distribution Use, copying, and distribution of any EMC software described in this publication requires an applicable software license.
    [Show full text]
  • Installing MQ 9.1.0.0 LTS to Coexist with MQ 8.0.0.9 in Windows, Including Applying Fix Packs 8.0.0.14 and 9.1.0.4
    Page 1 of 47 Installing MQ 9.1.0.0 LTS to coexist with MQ 8.0.0.9 in Windows, including applying Fix Packs 8.0.0.14 and 9.1.0.4 https://www.ibm.com/support/pages/node/2800929 Date last updated: 17-Apr-2020 Angel Rivera – [email protected] IBM MQ Support +++ Objective This techdoc shows all the steps to install MQ 9.1.0.0 LTS in Windows, while co-existing ("side-by-side") with MQ 8.0.0.9. Furthermore, the steps include the installation of the Fix Packs 8.0.0.14 and 9.1.0.4. Note: The particular fix packs mentioned in this tutorial were the latest ones at the time the tutorial was written – the overall recommendation is to apply the most recent fix pack level. None of the installations are designated as “Primary”. Therefore, you must use “setmqenv” to setup the MQ environment for the desired installation. NOTE regarding MQ 9.0: The principles discussed in this techdoc apply also to MQ 9.0. Keep in mind that the End Of Support (EOS) for MQ 8.0 is 30-Apr-2020 and for MQ 9.0 is 30-Sep-2021. At the time this tutorial was written, the EOS for MQ 9.1 has not been announced yet. An important aspect of this feature of multiple installations of MQ (multi-install) in the same host, is that this type of installation does not require that the MQ 8.0 queue managers and applications need to be stopped when doing activities with MQ 9.1.
    [Show full text]
  • Installation Guide
    Installation Guide Installation Guide Schrödinger Suite 2011 Schrödinger Press Installation Guide Copyright © 2011 Schrödinger, LLC. All rights reserved. While care has been taken in the preparation of this publication, Schrödinger assumes no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. Canvas, CombiGlide, ConfGen, Epik, Glide, Impact, Jaguar, Liaison, LigPrep, Maestro, Phase, Prime, PrimeX, QikProp, QikFit, QikSim, QSite, SiteMap, Strike, and WaterMap are trademarks of Schrödinger, LLC. Schrödinger and MacroModel are registered trademarks of Schrödinger, LLC. MCPRO is a trademark of William L. Jorgensen. Desmond is a trademark of D. E. Shaw Research. Desmond is used with the permission of D. E. Shaw Research. All rights reserved. This publication may contain the trademarks of other companies. Schrödinger software includes software and libraries provided by third parties. For details of the copyrights, and terms and conditions associated with such included third party software, see the Legal Notices, or use your browser to open $SCHRODINGER/docs/html/third_party_legal.html (Linux OS) or %SCHRODINGER%\docs\html\third_party_legal.html (Windows OS). This publication may refer to other third party software not included in or with Schrödinger software ("such other third party software"), and provide links to third party Web sites ("linked sites"). References to such other third party software or linked sites do not constitute an endorsement by Schrödinger, LLC. Use of such other third party software and linked sites may be subject to third party license agreements and fees. Schrödinger, LLC and its affiliates have no responsibility or liability, directly or indirectly, for such other third party software and linked sites, or for damage resulting from the use thereof.
    [Show full text]