.Net Micro Framework V4.1 beta 发布

简介: 新的版本增加了对VS2010开发环境支持,开源TCP/IP协议栈(lwIP),此外还支持OPenSSL及几款SH2/A系列的处理器。

新的版本增加了对VS2010开发环境支持,开源TCP/IP协议栈(lwIP),此外还支持OPenSSL及几款SH2/A系列的处理器。

  

   The .NET Micro Framework Version 4.1 Beta is now available.  This is our first post-Open Source release and includes our first fixes and features contributed by the community.  In addition, there are a number of enhancements done by the NETMF team here at Microsoft and there are new processors available from a new partner.

Here is the list of feature changes:

1)      VS2010 compatibility, with support for C# express as before. 

2)      Multi-targeting support for VS2010: from .NET MF 4.1 SDK it is possible to target version3.0 and version 4.0 .NET MF applications as well.  This means that you don't have to migrate your solutions immediately to use the new features of version 4.1 SDK

3)   Improved application diagnostics for code size, available at deployment, and memory requirements, available programatically through Microsoft.SPOT.Reflection.GetAssemblyMemoryInfo()

4)      DPWS changes and new samples.  Windows 7 and WCF 4.0 full compatibility and discoverability.  Support for DPWS custom bindings.

5)      Hashtable implementation for the standard typein System.Collections.  This feature was contributed by Eric Harlow through the .NET Micro Framework community acknowledging the original idea from Rob Miles and extensive support from Jan Kučera. 

6)      SPI interface changes for added flexibility and perfromace

7)      Support for Big Endian processors - this enables a number of processors that we could not support in the past.  The result is seen in item #11 below.

8)      Port for Atmel microcontroller SAM7S256 with 256Kb ROM and 64Kb RAM - this enables some really small applications

9)      Basic support for lwIP TCP/IP open source stack: TCP/IP tested, work on this will continue through the beta. The current EBSnet stack will continue to be available and I will write a separate description of how that will look.

10)    Basic support for OpenSSL open source stack for SSL: certificate parsing and cryptographic support compiling and tested, work on this will continue through the beta

11)      4 ports for Renesas SH2/A processors and development boards:  SH7216_RSK, SH7264_M3A_HS64, SH7264_RSK, SH7619_EVB

 

Since Renesas processors are new to our lineup - here is a brief description:

Including SH2A-FPU core @144MHz and on-chip large capacity RAM. It has on-chip abundant connectivity

functions such as Hi-speed USB/SD Host/CAN, and on the top of that it has on-chip peripheral functions

such as display controller suitable for industrial equipments and various communication equipments.

 

Including SH2A-FPU core @200MHz and on-chip Flash memory.It has on-chip abundant connectivity functions

such as USB/CAN/Ether, and on top of that it has on-chip peripheral functions such as multi-function timer

units for Motor control and 12 bit A/D converters suitable for industrial equipments and various communication

equipments such as office automation and personal computers.

 

Including SH-2 core @125MHz. It has on-chip Ethernet controller and Ethernet PHY.

It has on-chip host interface fuction suitable for connecting another microcontroller.

Go to http://connect.microsoft.com/directory and sign up for the .NET Micro Framework 4.1 beta by navigating to it in the listing and clicking on 'Apply Now'.  Please give us your feedback on the Connect site at the version 4.1 Beta newsgroup.

 

详情请参见:http://blogs.msdn.com/netmfteam/archive/2010/05/17/netmf-version-4-1-beta-launches.aspx

相关文章
|
1月前
使用的是.NET Framework 4.0,并且需要使用SMTP协议发送电子邮件
使用的是.NET Framework 4.0,并且需要使用SMTP协议发送电子邮件
42 1
|
26天前
|
开发框架 缓存 监控
NET Framework 到 .NET 5/6 的迁移是重大的升级
本文详细介绍了从 .NET Framework 4.8 迁移到 .NET 5/6 的过程,通过具体案例分析了迁移策略与最佳实践,包括技术栈评估、代码迁移、依赖项更新及数据库访问层的调整,强调了分阶段迁移、保持代码可维护性及性能监控的重要性。
46 3
|
1月前
|
机器学习/深度学习 编解码 算法
【小样本图像分割-4】nnU-Net: Self-adapting Framework for U-Net-Based Medical Image Segmentation
《nnU-Net: 自适应框架用于基于U-Net的医学图像分割》是一篇2018年的论文,发表在Nature上。该研究提出了一种自适应的医学图像分割框架nnU-Net,能够自动调整模型的超参数以适应不同的数据集。通过2D和3D U-Net及级联U-Net的组合,nnU-Net在10个医学分割数据集上取得了卓越的性能,无需手动调整。该方法强调数据增强、预处理和训练策略等技巧,为医学图像分割提供了一个强大的解决方案。
64 0
【小样本图像分割-4】nnU-Net: Self-adapting Framework for U-Net-Based Medical Image Segmentation
winform .net6 和 framework 的图表控件,为啥项目中不存在chart控件,该如何解决?
本文讨论了在基于.NET 6和.NET Framework的WinForms项目中添加图表控件的不同方法。由于.NET 6的WinForms项目默认不包含Chart控件,可以通过NuGet包管理器安装如ScottPlot等图表插件。而对于基于.NET Framework的WinForms项目,Chart控件是默认存在的,也可以通过NuGet安装额外的图表插件,例如LiveCharts。文中提供了通过NuGet添加图表控件的步骤和截图说明。
winform .net6 和 framework 的图表控件,为啥项目中不存在chart控件,该如何解决?
|
3月前
|
开发框架 缓存 前端开发
实战.NET Framework 迁移到 .NET 5/6
从.NET Framework 迁移到.NET 5/6 是一次重要的技术革新,涵盖开发环境与应用架构的全面升级。本文通过具体案例详细解析迁移流程,包括评估现有应用、利用.NET Portability Analyzer 工具识别可移植代码、创建新项目、逐步迁移代码及处理依赖项更新等关键步骤。特别关注命名空间调整、JSON 序列化工具更换及数据库访问层重构等内容,旨在帮助开发者掌握最佳实践,确保迁移过程平稳高效,同时提升应用性能与可维护性。
120 2
|
3月前
|
开发框架 JSON 监控
实战指南:从 .NET Framework 迁移到 .NET 5/6 的策略与最佳实践
【8月更文挑战第28天】从 .NET Framework 迁移到 .NET 5/6 是一次重要的技术升级,涉及开发环境与应用架构的改进。本文通过具体案例分析,介绍迁移策略与最佳实践,帮助开发者顺利完成转变。
79 1
|
3月前
|
缓存 程序员
封装一个给 .NET Framework 用的内存缓存帮助类
封装一个给 .NET Framework 用的内存缓存帮助类
|
2月前
|
开发框架 前端开发 JavaScript
ASP.NET MVC 教程
ASP.NET 是一个使用 HTML、CSS、JavaScript 和服务器脚本创建网页和网站的开发框架。
38 7
|
2月前
|
存储 开发框架 前端开发
ASP.NET MVC 迅速集成 SignalR
ASP.NET MVC 迅速集成 SignalR
58 0

热门文章

最新文章