You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VS version: VS 2017 15.8.1
OS version: Windows 10 1803 17134.228
VS extension version: 0.5.0.28
Firmware version: preview-776
This worked about 2 months ago.
Detailed repro steps so we can see the same problem
Create a nanoFramework solution:
`
using System;
namespace NFAppTestMathHang
{
public class Program
{
public static void Main()
{
Console.WriteLine("Hello world!");
float x;
x = Math.Round(5.5f); // <-- works after Jose´s fix.
x = Math.Floor(5.5f); // <-- hangs here to the point that the board must be re-flashed!
Console.WriteLine(x.ToString()); // <-- never arrives here
}
}
}
`
Run it on the board. The board hangs on Math.Floor.
The text was updated successfully, but these errors were encountered:
VS version: VS 2017 15.8.1
OS version: Windows 10 1803 17134.228
VS extension version: 0.5.0.28
Firmware version: preview-776
This worked about 2 months ago.
Detailed repro steps so we can see the same problem
`
using System;
namespace NFAppTestMathHang
{
public class Program
{
public static void Main()
{
Console.WriteLine("Hello world!");
}
`
The text was updated successfully, but these errors were encountered: