<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>LPC MicrocontrollersのトピックRe: Getting LPC1114 up running, controlling backlight (asm)</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596048#M22941</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by IanB on Thu Jun 18 13:38:49 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I've not used the fasmarm assembler - I use the one that comes with LPCXpresso. However, the instructions should be compatible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The instructions should read:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;LDR R0,=PIO0_3adr
MOVS R1,#0x08
STR R1,[R0]

PIO0_3adr: dw 0x40044023&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;because the ones you have are not in the correct format for the version of Thumb instruction set in the LPC1114.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm surprised the assembler doesn't flag up errors.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you are driving the backlight from PIO0_3 then you have it configured it as an output. Pull-ups and Pull-downs won't source or sink anywhere near enough current to light a backlight.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Jun 2016 19:25:22 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-15T19:25:22Z</dc:date>
    <item>
      <title>Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596045#M22938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by EI24 on Wed Jun 17 11:38:33 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;Hi, i recently bought a LPC1114 based board( /&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fwww.olimex.com%2FProducts%2FARM%2FNXP%2FLPC-H1114%2F" rel="nofollow" target="_blank"&gt;https://www.olimex.com/Products/ARM/NXP/LPC-H1114/&lt;/A&gt;&lt;SPAN&gt; ). I have a TFT screen backlight wire connected to PIO0_3 pin(14 on the board). The screen lights up, because of the pull-up. Im trying to shut the backlight off, by simply changing the pin to pull-down. However the backlight is still on. The code assembles fine without errors, and i can successfully download it to the MCU. I'm using the fasmarm assembler. Any idea what could be wrong?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is my code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;LDRr0 , [PIO0_3_adr]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;load IOCONFIG_PIO0_3 reg adress&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MOVr1 , 0x8&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;select pulldown(0b1000)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;STRr1 , [r0 , 0]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ;store in IOCONFIG_PIO0_3 reg&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PIO0_3_adr:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dw0x4004402C&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for responses!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596045#M22938</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596046#M22939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by IanB on Wed Jun 17 23:27:22 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;It's unlikely that the screen will light up due to the pull-up resistor as the pull-up current is &amp;lt;85µA, so I suspect that the pin is configured as an output in the GPIO0DIR register.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If so, you need to change bit 3 of the GPIO0DATA register to a zero.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596046#M22939</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596047#M22940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by EI24 on Thu Jun 18 01:12:41 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;In the LPC111X datasheet(UM10398). It notes in section 12.3.2,&amp;nbsp; that the reset value is input for all PIOx IO ports, im fairly certain i haven't changed them. I will try to change the GPIO0DATA reg as you said. When i analyse at the registers through the programmer software(JLinkExe), all the regs are filled with junk data. When i download the code with a simple, MOV r0, #0x8 , r0 does not change. So im suspecting there is something&amp;nbsp; wrong either with my assembler(maybe im assembling for the wrong architecture). Or something to do with the programmer software. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596047#M22940</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596048#M22941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by IanB on Thu Jun 18 13:38:49 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I've not used the fasmarm assembler - I use the one that comes with LPCXpresso. However, the instructions should be compatible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The instructions should read:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;LDR R0,=PIO0_3adr
MOVS R1,#0x08
STR R1,[R0]

PIO0_3adr: dw 0x40044023&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;because the ones you have are not in the correct format for the version of Thumb instruction set in the LPC1114.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm surprised the assembler doesn't flag up errors.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you are driving the backlight from PIO0_3 then you have it configured it as an output. Pull-ups and Pull-downs won't source or sink anywhere near enough current to light a backlight.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596048#M22941</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596049#M22942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by EI24 on Sun Jun 21 01:02:12 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi again, sorry for being slow(big celebration day in my country came up(midsommar)). I think maybe im assembling for the wrong architecture, or something is wrong with my download program. When i download a simply program like, MOV r0, 0x5. When i check the regs, r0 has not changed its value. I have posted my problem to the J-Link forum, im still waiting for a response.&amp;nbsp; &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596049#M22942</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596050#M22943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by IanB on Mon Jun 22 02:15:06 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Happy solstice - I see from the BBC that for once it wasn't cloudy at Stonehenge!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Check your syntax. . .&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is no such instruction &lt;/SPAN&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;MOV r0,0x5&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN&gt;, on a Cortex M0 and so your assembler will have to guess whether you mean&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;MOV R0,R5&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;MOVS R0,R5&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN&gt; or &lt;/SPAN&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;MOVS R0,#0x05&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My guess is that it will go for &lt;/SPAN&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;MOVS R0,R5&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;SPAN&gt;, so you won't end up with 5 in R0, you will get whatever you had in R5.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596050#M22943</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596051#M22944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by EI24 on Mon Jun 22 04:45:02 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Didn't know of Stonehenge, seems like a cool place to visit!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ok, that may be part of the problem. I tried to download, MOVS r0, #0x5&amp;nbsp; instead. But got the same result. The fasmarm assembler has some strange ways to specify your architecture. You don't simply specify your core, MCU or architecture(arm_architecture_v6m). For thumb16&amp;nbsp; i have to specify(which i think stands for architecture) CPU_CAPABILITY_V4T, *V5T, *V6T, *6M, *7M and *ALLIGN. So i think this and/or the J-Link downloader is the problem. &lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596051#M22944</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596052#M22945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by EI24 on Fri Jun 26 06:06:42 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi again! I have got the programmer software right. I switched to arm-none-eabi toolchain which made things easier after i set it up. Now when i execute a simple program like MOVS r0, #0x5. The results are as intended. I changed the code so that the pin is pull-down, data direction to output and and then output zero to the pin. Though i get the same result(the backlight is still on). I think i may be using STR wrong. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the new code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
.globalmain
.org 0x1000

main:
MOVSr1 , #0x0//used for clearing the regs
LDRr0 , =0x50008000//load GPIO0DIR address
STRr1 , [r0]//clear GPIO0DIR reg

LDRr0 , =0x50000000//set GPIODATA register to 0
STRr1 , [r0]//clear GPIO0DATA reg

MOVSr1 , #0x8//used to set pull-down
LDRr0, =0x4004402C//load IOCON_PIO0_3&amp;nbsp; address

STRr1 , [r0]//set reg
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596052#M22945</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596053#M22946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by LabRat on Fri Jun 26 06:18:35 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you set IOCON clock in SYSAHBCLKCTRL before?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Why is this pin an input?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you debug your code?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596053#M22946</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:25Z</dc:date>
    </item>
    <item>
      <title>Re: Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596054#M22947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by EI24 on Fri Jun 26 06:39:44 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi, thanks for the response. I have not consciously set the IOCON clock. Though in trying to set up the arm-none-eabi, i messed up many times and downloaded 40kB of junk code and executed that code. So it may be that i have changed some things in the MCU.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is not the pin set to output? 0(default) is input and 1 out i read in the datasheet.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;No i have not learned gnu gdb yet, which is what i will have to use. I just got everthing to work yesterday. Though i get step through the program mem with the program software, i will try that! &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596054#M22947</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596055#M22948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by IanB on Fri Jun 26 07:20:24 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;You need to write a 1 to the relevant bit of DIR to set it as an output.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Once it's an output, whether it is pull-up or pull-down is irrelevant as that only applies to inputs.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596055#M22948</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Getting LPC1114 up running, controlling backlight (asm)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596056#M22949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by EI24 on Fri Jun 26 09:24:40 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Ok, i suspected that. when i step through the code with the JLink programmer, the STR instructions seem to work as the should. Also now i see that i was setting GIO0DIR&amp;nbsp; to 0... Now when i changed my code everything works, the screen turns black!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for helping me! :) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;On the MCU i programmed on before this one i had some problem getting code on the chip and set everything up. Which can be tedious and drain your motivation. Also can take alot of time, as in my case.. &lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jun 2016 19:25:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Getting-LPC1114-up-running-controlling-backlight-asm/m-p/596056#M22949</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-15T19:25:27Z</dc:date>
    </item>
  </channel>
</rss>

