Skip to content

UBLOX_EVK_ODIN_W2 failing to blink D2 and D8 #5129

@andrewc-arm

Description

@andrewc-arm

Description

  • Type: Bug
  • Related issue: #5128
  • Priority: Blocker

Bug

Target
UBLOX_EVK_ODIN_W2

Toolchain:
GCC_ARM
Please note that hackathon developers can only use GCC_ARM.

Toolchain version:
5.4.1 20160919

mbed-cli version:
(mbed --version)
1.2.0

mbed-os sha:
(git log -n1 --oneline)
mbed-os-5.6
a4056fb Added versionning define block for new minor release.

DAPLink version:

Expected behavior
These code should work well.

DigitalOut led1(D2);
DigitalOut led2(D8);

Actual behavior
led1 and led2 above do not work and blink properly.

Steps to reproduce

  • Get UBLOX_EVK_ODIN_W2
  • Get mbed-os-example-blinky code.
  • Make small LED + resistor network with D2 pin.
  • Run following code.
#include "mbed.h"

DigitalOut led1(D2);

// main() runs in its own thread in the OS
int main() {
    while (true) {
        led1 = !led1;
        printf("Changed the LED(%d)\n", led1.read());
        wait(0.5);
    }
}
  • You will observe no led1 blinking.
  • Change to D0 and it will work.

Hi,

This is quite serious. For Seoul IoT Hackathon (http://www.seoulhackathon.org/), we picked UBLOX_EVK_ODIN_W2 board and D2 and D8 pins are not working. Please investigate this issue and give us solution.

Thanks,

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions