全新国产芯片发布 智能手表专用

Antutu

阅读

智能手表是手机厂商扩展自家生态链不可或缺的一个重要环节,但针对于这类产品的处理器平台却很少被人关注。

前段时间高通骁龙的4100系列刚刚更新,无独有偶,国产芯片制造商紫光展锐在近期也发布了一款用于智能手表的新芯片UNISOC W307。

根据紫光展锐的官方文件描述显示,UNISOC W307建立在台积电的28nm HPC+工艺之上,是一款基于超低功耗架构设计的产品,封装面积比上一代缩小了30%,不仅提升了性能还降低了功耗。

这款处理器支持高清视频通话,亚米级高精度定位以及高度集成了4G网络,不过目前为止还没有厂商公开宣布将会推出搭载这款处理器的智能手表产品,价格方面将会是搭载紫光展锐处理器产品的最大优势。

国产新芯片发布 智能手表专用

原创文章,作者:wanglei,如若转载,请注明出处:http://www.antutu.com/doc/122360.htm

相关推荐

登录后才能评论

$(window).resize(function(){ $(".article-e").width($(".article-a").width()) }); $(document).ready(function () { // 微信二维码分享 var qrcode = new QRCode(document.getElementById("qrcode"), { width: 120, height: 120, text: this.location.href }); qrcode.makeCode(window.location.href); // 管理员一栏 $(".article-e").width($(".article-a").width()) // 新闻内页图片弹框 $(".article-b img").click(function(){ var _this = $(this); imgShow("#outerdiv", "#innerdiv", "#bigimg", _this); }); }) function getScrollTop() { var scroll_top = 0; if (document.documentElement && document.documentElement.scrollTop) { scroll_top = document.documentElement.scrollTop; } else if (document.body) { scroll_top = document.body.scrollTop; } return scroll_top; } // 图片弹框 function imgShow(outerdiv, innerdiv, bigimg, _this){ var src = _this.attr("src"); $("#bigimg").attr("src", src); // 获取当前点击图片的真实大小,与当前窗口比较 $("").attr("src", src).load(function(){ var windowW = $(window).width(); var windowH = $(window).height(); var realWidth = this.width; var realHeight = this.height; var imgWidth, imgHeight; var scale = 1; if(realHeight>windowH*scale) { imgHeight = windowH*scale; imgWidth = imgHeight/realHeight*realWidth; if(imgWidth>windowW*scale) { imgWidth = windowW*scale; imgHeight = imgWidth / realWidth * realHeight; } } else if(realWidth>windowW*scale) { imgWidth = windowW*scale; imgHeight = imgWidth/realWidth*realHeight; } else { imgWidth = realWidth; imgHeight = realHeight; } $("#bigimg").css("width",imgWidth); var w = (windowW-imgWidth)/2; var h = (windowH-imgHeight)/2; $("#innerdiv").css({"top":h, "left":w}); $(".navbar").fadeOut("fast") $(".article-e").fadeOut("fast") $("#outerdiv").fadeIn("fast"); }); //再次点击 关闭弹框 // $("#outerdiv").click(function(){ // $(this).fadeOut("fast"); // $(".navbar").fadeIn("fast") // $(".article-e").fadeIn("fast") // }); var imgFlag = true; var clickTimeId; $(bigimg).dblclick(function(){ $this = $(this); clearTimeout(clickTimeId); if(imgFlag){ imgFlag = false $this.css({ '-webkit-transform':'scale(2)', 'transform':'scale(2)' }) }else{ imgFlag = true $this.css({ '-webkit-transform':'scale(1)', 'transform':'scale(1)' }) } }); $(outerdiv).click(function(){ // 取消上次延时未执行的方法 clearTimeout(clickTimeId); //执行延时 clickTimeId = setTimeout(function() { //此处为单击事件要执行的代码 $(outerdiv).fadeOut("fast"); $(".navbar").fadeIn("fast") $(".article-e").fadeIn("fast") },300); }) } $(document).scroll(function () { var scroll_top=getScrollTop(); // 管理员一栏 if ($(window).height() - $(document).scrollTop()-scroll_top >= 200) { $(".article-e").addClass('fixedbottom'); $(".article-e").width($(".article-a").width()) } else { $(".article-e").removeClass('fixedbottom'); } })