2009年2月11日星期三

http://www.bavariantechnic.com

http://www.bavariantechnic.com
arly Release
With the release of the Bavarian Technic Diagnostic Tool for BMW, we begin the next phase of this long-term project. Today, we offer a product that includes comprehensive coverage and a long list of features with a focus on late-model cars. Development, however, is not yet complete Read more.

What cars does it work on?
2005-2008 BMW 1 Series
1996-2009 BMW 3 Series
1996-2008 BMW 5 Series
2003-2008 BMW 6 Series
1994-2008 BMW 7 Series
2004-2008 BMW X3
1999-2006 BMW X5
2008-2009 BMW X6
1996-2002 BMW Z3
2002-2003 BMW Z4
2000-2003 BMW Z8
All BMW M models
Mini Cooper R50 & R56
Looking for Porsche? Please see Durametric

What does it do?
The tool accesses the electronic control units in your car to:
Read and clear diagnostic fault codes
Display shadow faults and soft faults
Display and record real-time actual values
Activate components of the car for troubleshooting
Reset service reminders
Reset condition-based service indicators
Send special commands to control units
Show ECU information
Access the latest BMW DCAN systems for 2007+ models

What systems does it work on?
Engine
Airbag
ABS
Transmission
Alarm
Central electronics
Heating & A/C
And much more...
*Not all features are supported on all modules or vehicles. See our Model/Feature Matrix for specific coverage.


How does it work?
Our product is a hardware and software tool that plugs into your Windows PC's USB port (check system requirements). Once plugged into the car, the tool is capable of communicating with the different system control units in the car.


Can it really help me turn off my airbag light?
Yes! The tool can show you why it is on in the first place so you can correct the problem and turn the light off.


Beta
The Bavarian Technic tool for BMW is not yet available for sale. We are currently undergoing beta testing on our BMW product and expect the first release in January 2009.


How is your product different from the OBD2 products available?
Our product communicates with your car just like the factory tool does and can access all of the systems in the car. OBD2 was created for emissions-related problems and only covers a limited subset of your car's engine.

30-day Satisfaction Guarantee
If you are not satisfied with our product for any reason, you may return the tool to us for a full refund (less shipping costs). Click here for details.

2009年1月18日星期日

WII

根据众多电玩店主的反映,主机序号在11975~11980之间的机器有一半几率是被截断针脚的,而12000之后的机器则全都是。但这并不意味不能再加直读,只是对电玩店的改机人员来说难度又加大了,改机用的IC都需要磨针脚到跳线的范围,并且耗费的时间翻倍。一般的小店已经无力改机,又或者改机的质量不过关,略有震动就会出现脱线问题,翻修率增大。

对任天堂来说截断针脚仅仅只是开始,来自台湾代工厂商的消息表明对Wii芯片做过再次改动的主机将于7月进入市场,推测这批机器的针脚可能经过硅胶固化,而想要去除硅胶将是非常的难,而且极其容易引起旁边的针脚脱落,改机几乎会无法实现。

AVR speed

#include
#include
#pragma interrupt_handler Icp_timer1:12
unsigned int oldcount;
unsigned int newcount;

void mcu_init(void)
{
DDRD=0X3F;
//PORTD=0X00;
TIMSK=0X08;
TCCR1A=0X00;
TCCR1B=0XC2;
ICR1=0;
TCNT1=0;
}
void Icp_timer1(void)
{
newcount=ICR1;
ICR1=0;
TCNT1=0;
TCCR1B=0XC2;
}
void main()
{
unsigned long int p;
DDRC=0XFF;
mcu_init();
SREG|=0X80;
while(1)//for(;;)
{
if ((newcount&0XFFF8)!=(oldcount&0XFFF8))
{
oldcount=newcount;
}
if (oldcount>10) PORTC=0XFF;
else
PORTC=0X00;
}
}