MidasLink software including USB driver, J-Link.exe and DLL for ARM.
(J-Link software including J-Flash software (license required) can also be used with MidasLink).
MidasLink software and documentation pack V3.78a [1918 kb]
USB driver,
J-Mem
jlink.exe and jlinkarm.dll
J-Flash*
J-Link RDI*
(includes flashdownloader* and support for unlimited number of flash breakpoints*)
GDB server*
Visual 開發 希望對你們有幫助
public static int Rom(int n, int m)//雙寄或雙偶
{
int count = 0 //第一排Y坐標上要幾個
if (n < m)
{
for (int i = 1 i <= n i = i + 2)
{
count++
}
}
else
{
for (int j = 1 j <= m j = j + 2)
{
count++
}
}
return count
}